Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 2232 Rev 3130
Línea 41... Línea 41...
41
            'attributes' => [
41
            'attributes' => [
42
                'maxlength' 	=> 15,
42
                'maxlength' 	=> 15,
43
                'id' 			=> 'date',
43
                'id' 			=> 'date',
44
            ]
44
            ]
45
        ]);
45
        ]);
-
 
46
        $this->add([
-
 
47
            'name' => 'status',
-
 
48
            'type' => \Laminas\Form\Element\Checkbox::class,
-
 
49
            'attributes' => [
-
 
50
                'id' 			=> 'status',
-
 
51
            ],
-
 
52
            'options' => [
-
 
53
                'use_hidden_element' => 0,
-
 
54
                'unchecked_value' => \LeadersLinked\Model\PlanningObjectivesAndGoalsObjectives::STATUS_INACTIVE,
-
 
55
                'checked_value'=> \LeadersLinked\Model\PlanningObjectivesAndGoalsObjectives::STATUS_ACTIVE,
-
 
56
            ]
-
 
57
        ]);
46
    }
58
    }
Línea 47... Línea 59...
47
 
59
 
48
}
60
}