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