Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
2516 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\PlanningObjectivesAndGoalsTask;
11
use Laminas\Form\Element;
12
 
13
class PlanningObjectivesAndGoalsTaskForm extends Form
14
{
15
 
16
    public function __construct(){
17
        parent::__construct();
18
        $this->setInputFilter(new PlanningObjectivesAndGoalsTaskFilter());
19
 
20
        $this->add([
21
            'name' => 'title',
22
            'type' => \Laminas\Form\Element\Text::class,
23
            'attributes' => [
2690 nelberth 24
                'maxlength' 	=> 254,
2516 nelberth 25
                'id' 			=> 'title',
26
            ]
27
        ]);
28
 
29
 
30
        $this->add([
31
            'name' => 'description',
2690 nelberth 32
            'type' => \Laminas\Form\Element\Text::class,
2516 nelberth 33
            'attributes' => [
2690 nelberth 34
                'maxlength' 	=> 254,
2516 nelberth 35
                'id'    => 'description',
36
            ]
37
        ]);
2682 nelberth 38
 
2679 nelberth 39
        $this->add([
2682 nelberth 40
            'name' => 'how',
41
            'type' => \Laminas\Form\Element\Text::class,
42
            'attributes' => [
2690 nelberth 43
                'maxlength' 	=> 254,
2682 nelberth 44
                'id' 			=> 'how',
45
            ]
46
        ]);
47
 
48
        $this->add([
2738 nelberth 49
            'name' => 'place',
2682 nelberth 50
            'type' => \Laminas\Form\Element\Text::class,
51
            'attributes' => [
2690 nelberth 52
                'maxlength' 	=> 254,
2815 nelberth 53
                'id' 			=> 'place',
2682 nelberth 54
            ]
55
        ]);
56
 
57
        $this->add([
58
            'name' => 'who',
2692 nelberth 59
            'type' => \Laminas\Form\Element\Text::class,
2682 nelberth 60
            'attributes' => [
2690 nelberth 61
                'maxlength' 	=> 254,
2682 nelberth 62
                'id' 			=> 'who',
63
            ]
64
        ]);
65
        $this->add([
2774 nelberth 66
            'name' => 'time',
2773 nelberth 67
            'type' => \Laminas\Form\Element\Number::class,
2767 nelberth 68
            'attributes' => [
2773 nelberth 69
                'min' => '0',
70
                'step' => '1',
2816 nelberth 71
                'id' => 'time',
2773 nelberth 72
            ]
2767 nelberth 73
        ]);
74
        $this->add([
2682 nelberth 75
            'name' => 'date',
76
            'type' => Element\Date::class,
77
            'attributes' => [
78
                'maxlength' 	=> 15,
79
                'id' 			=> 'date',
80
            ]
81
        ]);
82
        $this->add([
83
            'name' => 'detour',
84
            'type' => \Laminas\Form\Element\Text::class,
85
            'attributes' => [
2690 nelberth 86
                'maxlength' 	=> 254,
2682 nelberth 87
                'id' 			=> 'detour',
88
            ]
89
        ]);
90
        $this->add([
91
            'name' => 'evaluation',
92
            'type' => \Laminas\Form\Element\Text::class,
93
            'attributes' => [
2690 nelberth 94
                'maxlength' 	=> 254,
2682 nelberth 95
                'id' 			=> 'evaluation',
96
            ]
97
        ]);
98
        $this->add([
2902 nelberth 99
            'type' => Element\Range::class,
2903 nelberth 100
            'name' => 'indicator',
2682 nelberth 101
            'attributes' => [
2976 nelberth 102
                'min'=> 1,
2902 nelberth 103
                'max' => 100, // default maximum is 100
2817 nelberth 104
                'id' => 'indicator',
2902 nelberth 105
            ],
2682 nelberth 106
        ]);
107
 
2688 nelberth 108
        $this->add([
109
            'name' => 'cost',
110
            'type' => \Laminas\Form\Element\Number::class,
111
            'attributes' => [
112
                'min' => '0',
2722 nelberth 113
                'step' => '1',
2817 nelberth 114
                'id' => 'cost',
2688 nelberth 115
            ]
116
        ]);
2682 nelberth 117
 
2688 nelberth 118
 
2682 nelberth 119
        $this->add([
2688 nelberth 120
            'type' => Element\Select::class,
121
            'name' => 'priority',
122
            'options' =>  [
2751 nelberth 123
                'empty_option' => 'LABEL_SELECT',
2688 nelberth 124
                'value_options' =>[
2752 nelberth 125
                    'i' => 'LABEL_IMPORTANT',
126
                    'ni' => 'LABEL_NOT_IMPORTANT',
2688 nelberth 127
                ],
128
            ],
129
            'attributes'=> [
130
                'required'=> true,
2817 nelberth 131
                 'class' => 'Custom-select',
132
                'id' => 'priority',
2688 nelberth 133
                  ]
134
            ]);
4056 nelberth 135
            $this->add([
136
                'type' => Element\Select::class,
137
                'name' => 'urgent',
138
                'options' =>  [
139
                    'empty_option' => 'LABEL_SELECT',
140
                    'value_options' =>[
141
                        'u' => 'LABEL_URGENT',
142
                        'nu' => 'LABEL_NOT_URGENT'
143
                    ],
144
                ],
145
                'attributes'=> [
146
                    'required'=> true,
147
                     'class' => 'Custom-select',
148
                    'id' => 'urgent',
149
                      ]
150
                ]);
151
 
2688 nelberth 152
        $this->add([
2679 nelberth 153
            'name' => 'status',
154
            'type' => \Laminas\Form\Element\Checkbox::class,
155
            'attributes' => [
156
                'id' 			=> 'status',
157
            ],
158
            'options' => [
159
                'use_hidden_element' => 0,
2979 nelberth 160
                'unchecked_value' => \LeadersLinked\Model\PlanningObjectivesAndGoalsTask::STATUS_INACTIVE,
161
                'checked_value'=> \LeadersLinked\Model\PlanningObjectivesAndGoalsTask::STATUS_ACTIVE,
2679 nelberth 162
            ]
163
        ]);
2516 nelberth 164
 
165
    }
166
 
167
}