Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15086 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15086 Rev 15151
Línea 30... Línea 30...
30
                'maxlength' 	=> 128,
30
                'maxlength' 	=> 128,
31
                'id' 			=> 'name',
31
                'id' 			=> 'name',
32
            ]
32
            ]
33
        ]);
33
        ]);
Línea -... Línea 34...
-
 
34
 
34
 
35
        /*
35
        $this->add([
36
        $this->add([
36
            'name' => 'segmented',
37
            'name' => 'segmented',
37
            'type' => \Laminas\Form\Element\Select::class,
38
            'type' => \Laminas\Form\Element\Select::class,
38
            'attributes' => [
39
            'attributes' => [
Línea 46... Línea 47...
46
                   'industry' => 'LABEL_INDUSTRY',
47
                   'industry' => 'LABEL_INDUSTRY',
47
                   'location' => 'LABEL_LOCATION',
48
                   'location' => 'LABEL_LOCATION',
48
                   'languages' => 'LABEL_LANGUAGES',
49
                   'languages' => 'LABEL_LANGUAGES',
49
                ],
50
                ],
50
            ],
51
            ],
51
        ]);
52
        ]);*/
Línea 52... Línea 53...
52
 
53
 
53
        $this->add([
54
        $this->add([
54
            'name' => 'form_id',
55
            'name' => 'form_id',
55
            'type' => \Laminas\Form\Element\Select::class,
56
            'type' => \Laminas\Form\Element\Select::class,
Línea 222... Línea 223...
222
            'name' => 'target',
223
            'name' => 'target',
223
            'type' => \Laminas\Form\Element\Select::class,
224
            'type' => \Laminas\Form\Element\Select::class,
224
            'attributes' => [
225
            'attributes' => [
225
                'id' 			=> 'target',
226
                'id' 			=> 'target',
226
            ],'options' => [
227
            ],'options' => [
227
                'empty_option' => 'LABEL_TARGET',
228
                'empty_option' => 'LABEL_SELECT',
228
                'value_options' => [
229
                'value_options' => [
229
                    Survey::TARGET_REGISTER => 'LABEL_REGISTER',
230
                    Survey::TARGET_NON_REGISTERED =>  'LABEL_SURVEY_TARGET_PUBLIC',
230
                    Survey::TARGET_SEGMENTED => 'LABEL_SEGMENTED',
231
                    Survey::TARGET_REGISTER =>  'LABEL_SURVEY_TARGET_USERS',
231
                    Survey::TARGET_NON_REGISTERED => 'LABEL_NON_REGISTERED',
232
                    Survey::TARGET_SEGMENTED => 'LABEL_SURVEY_TARGET_USERS_SEGMENTED',
232
                ],
233
                ],
233
            ],
234
            ],
234
        ]);
235
        ]);
Línea 235... Línea 236...
235
 
236
 
Línea 238... Línea 239...
238
            'type' => \Laminas\Form\Element\Select::class,
239
            'type' => \Laminas\Form\Element\Select::class,
239
            'attributes' => [
240
            'attributes' => [
240
                'id' 			=> 'status',
241
                'id' 			=> 'status',
241
            ],
242
            ],
242
            'options' => [
243
            'options' => [
243
                'empty_option' => 'LABEL_STATUS',
244
                'empty_option' => 'LABEL_SELECT',
244
                'value_options' => [
245
                'value_options' => [
245
                    Survey::STATUS_ACTIVE => 'LABEL_ACTIVE',
246
                    Survey::STATUS_ACTIVE => 'LABEL_ACTIVE',
246
                    Survey::STATUS_INACTIVE => 'LABEL_INACTIVE',
247
                    Survey::STATUS_INACTIVE => 'LABEL_INACTIVE',
247
                ],
248
                ],
248
            ],
249
            ],
Línea 253... Línea 254...
253
            'type' => \Laminas\Form\Element\Select::class,
254
            'type' => \Laminas\Form\Element\Select::class,
254
            'attributes' => [
255
            'attributes' => [
255
                'id' 			=> 'identity',
256
                'id' 			=> 'identity',
256
            ],
257
            ],
257
            'options' => [
258
            'options' => [
258
                'empty_option' => 'LABEL_STATUS',
259
                'empty_option' => 'LABEL_SELECT',
259
                'value_options' => [
260
                'value_options' => [
260
                    Survey::IDENTITY_YES => 'LABEL_YES',
261
                    Survey::IDENTITY_YES => 'LABEL_YES',
261
                    Survey::IDENTITY_NO => 'LABEL_NO',
262
                    Survey::IDENTITY_NO => 'LABEL_NO',
262
                ],
263
                ],
263
            ],
264
            ],