Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
2232 nelberth 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form;
6
 
7
use Laminas\Form\Form;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Log\LoggerInterface;
10
use LeadersLinked\Model\PlanningObjectivesAndGoalsObjectives;
11
use Laminas\Form\Element;
12
 
13
class PlanningObjectivesAndGoalsObjectivesForm extends Form
14
{
15
 
16
    public function __construct(){
17
        parent::__construct();
18
        $this->setInputFilter(new PlanningObjectivesAndGoalsObjectivesFilter());
19
 
20
        $this->add([
21
            'name' => 'title',
22
            'type' => \Laminas\Form\Element\Text::class,
23
            'attributes' => [
24
                'maxlength' 	=> 128,
25
                'id' 			=> 'title',
26
            ]
27
        ]);
28
 
29
 
30
        $this->add([
31
            'name' => 'description',
32
            'type' => \Laminas\Form\Element\Textarea::class,
33
            'attributes' => [
34
                'id'    => 'description',
35
            ]
36
        ]);
37
 
38
        $this->add([
39
            'name' => 'date',
40
            'type' => Element\Date::class,
41
            'attributes' => [
42
                'maxlength' 	=> 15,
43
                'id' 			=> 'date',
44
            ]
45
        ]);
3130 nelberth 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
        ]);
2232 nelberth 58
    }
59
 
60
}