Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 2356 Rev 3130
Línea 32... Línea 32...
32
            'type' => \Laminas\Form\Element\Textarea::class,
32
            'type' => \Laminas\Form\Element\Textarea::class,
33
            'attributes' => [
33
            'attributes' => [
34
                'id'    => 'description',
34
                'id'    => 'description',
35
            ]
35
            ]
36
        ]);
36
        ]);
-
 
37
        $this->add([
-
 
38
            'name' => 'status',
-
 
39
            'type' => \Laminas\Form\Element\Checkbox::class,
-
 
40
            'attributes' => [
-
 
41
                'id' 			=> 'status',
-
 
42
            ],
-
 
43
            'options' => [
-
 
44
                'use_hidden_element' => 0,
-
 
45
                'unchecked_value' => \LeadersLinked\Model\PlanningObjectivesAndGoalsGoals::STATUS_INACTIVE,
-
 
46
                'checked_value'=> \LeadersLinked\Model\PlanningObjectivesAndGoalsGoals::STATUS_ACTIVE,
-
 
47
            ]
-
 
48
        ]);
Línea 37... Línea 49...
37
 
49
 
Línea 38... Línea 50...
38
    }
50
    }
39
 
51