Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
7292 eleazar 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form;
6
use LeadersLinked\Mapper\IndustryMapper;
7
use LeadersLinked\Mapper\JobDescriptionMapper;
8
use LeadersLinked\Mapper\SkillMapper;
9
use LeadersLinked\Mapper\LanguageMapper;
10
use LeadersLinked\Mapper\CompanyMapper;
11
use Laminas\Form\Form;
12
use Laminas\Db\Adapter\AdapterInterface;
13
use LeadersLinked\Mapper\OrganizationalClimateMapper;
14
use LeadersLinked\Mapper\OrganizationalClimateFormMapper;
15
use LeadersLinked\Model\OrganizationalClimate;
16
 
17
 
18
class OrganizationalClimateForm extends Form
19
{
20
 
21
    public function __construct($adapter, $company_id)
22
    {
23
        parent::__construct();
24
        $this->setInputFilter(new OrganizationalClimateFilter($adapter, $company_id));
25
 
26
        $this->add([
27
            'name' => 'name',
28
            'type' => \Laminas\Form\Element\Text::class,
29
             'attributes' => [
30
                'maxlength' 	=> 128,
31
                'id' 			=> 'name',
32
            ]
33
        ]);
34
 
35
        $this->add([
36
            'name' => 'segmented',
37
            'type' => \Laminas\Form\Element\Select::class,
38
            'attributes' => [
39
                'id' 			=> 'segmented',
40
            ],'options' => [
41
                'disable_inarray_validator' => true,
42
                'empty_option' => 'LABEL_SEGMENTED',
43
                'value_options' => [
44
                   'description' => 'LABEL_JOB_DESCRIPTION',
45
                   'skill' => 'LABEL_SKILLS',
46
                   'industry' => 'LABEL_INDUSTRY',
47
                   'location' => 'LABEL_LOCATION',
48
                   'languages' => 'LABEL_LANGUAGES',
49
                ],
50
            ],
51
        ]);
52
 
53
        $this->add([
54
            'name' => 'form_id',
55
            'type' => \Laminas\Form\Element\Select::class,
56
             'attributes' => [
57
                'id' 			=> 'form_id',
58
             ],
59
             'options' => [
60
                'value_options' => $this->getFormSelectOptions($adapter, $company_id)
61
            ]
62
        ]);
63
 
64
        $this->add([
65
            'name' => 'job_description_id',
66
            'type' => \Laminas\Form\Element\Select::class,
67
             'attributes' => [
68
                'id' 			=> 'job_description_id',
69
                'multiple'      => 'yes',
70
             ],
71
             'options' => [
72
                'disable_inarray_validator' => true,
73
                'value_options' => $this->getDescriptionSelectOptions($adapter, $company_id)
74
            ]
75
        ]);
76
 
77
        $this->add([
78
            'name' => 'skill_id',
79
            'type' => \Laminas\Form\Element\Select::class,
80
             'attributes' => [
81
                'id' 			=> 'skill_id',
82
                'multiple'      => 'yes',
83
             ],
84
             'options' => [
85
                'disable_inarray_validator' => true,
86
                'value_options' => $this->getSkillSelectOptions($adapter)
87
            ]
88
        ]);
89
 
90
        $this->add([
91
            'name' => 'language_id',
92
            'type' => \Laminas\Form\Element\Select::class,
93
             'attributes' => [
94
                'id' 			=> 'language_id',
95
                'multiple'      => 'yes',
96
             ],
97
             'options' => [
98
                'disable_inarray_validator' => true,
99
                'value_options' => $this->getLanguageSelectOptions($adapter)
100
            ]
101
        ]);
102
 
103
        $this->add([
104
            'name' => 'since_date',
105
            'type' => \Laminas\Form\Element\Date::class,
106
             'attributes' => [
107
                'id' 			=> 'since_date',
108
             ],
109
        ]);
110
 
111
        $this->add([
112
            'name' => 'last_date',
113
            'type' => \Laminas\Form\Element\Date::class,
114
             'attributes' => [
115
                'id' 			=> 'last_date',
116
             ],
117
        ]);
118
 
119
        $this->add([
120
            'name' => 'location_search',
121
            'type' => \Laminas\Form\Element\Text::class,
122
            'attributes' => [
123
                'maxlength' 	=> 250,
124
                'id' 			=> 'location_search',
125
            ]
126
        ]);
127
 
128
        $this->add([
129
            'name' => 'formatted_address',
130
            'type' => \Laminas\Form\Element\Hidden::class,
131
            'attributes' => [
132
                'id'    => 'formatted_address',
133
            ]
134
        ]);
135
 
136
        $this->add([
137
            'name' => 'address1',
138
            'type' => \Laminas\Form\Element\Hidden::class,
139
            'attributes' => [
140
                'id'    => 'address1',
141
            ]
142
        ]);
143
 
144
        $this->add([
145
            'name' => 'address2',
146
            'type' => \Laminas\Form\Element\Hidden::class,
147
            'attributes' => [
148
                'id'    => 'address2',
149
            ]
150
        ]);
151
 
152
        $this->add([
153
            'name' => 'country',
154
            'type' => \Laminas\Form\Element\Hidden::class,
155
            'attributes' => [
156
                'id'    => 'country',
157
            ]
158
        ]);
159
 
160
        $this->add([
161
            'name' => 'state',
162
            'type' => \Laminas\Form\Element\Hidden::class,
163
            'attributes' => [
164
                'id'    => 'state',
165
            ]
166
        ]);
167
 
168
        $this->add([
169
            'name' => 'city1',
170
            'type' => \Laminas\Form\Element\Hidden::class,
171
            'attributes' => [
172
                'id'    => 'city1',
173
            ]
174
        ]);
175
 
176
        $this->add([
177
            'name' => 'city2',
178
            'type' => \Laminas\Form\Element\Hidden::class,
179
            'attributes' => [
180
                'id'    => 'city2',
181
            ]
182
        ]);
183
 
184
        $this->add([
185
            'name' => 'postal_code',
186
            'type' => \Laminas\Form\Element\Hidden::class,
187
            'attributes' => [
188
                'id'    => 'postal_code',
189
            ]
190
        ]);
191
 
192
        $this->add([
193
            'name' => 'latitude',
194
            'type' => \Laminas\Form\Element\Hidden::class,
195
            'attributes' => [
196
                'id'    => 'latitude',
197
            ]
198
        ]);
199
 
200
        $this->add([
201
            'name' => 'longitude',
202
            'type' => \Laminas\Form\Element\Hidden::class,
203
            'attributes' => [
204
                'id'    => 'longitude',
205
            ]
206
        ]);
207
 
208
        $this->add([
209
            'name' => 'industry_id',
210
            'type' => \Laminas\Form\Element\Select::class,
211
             'attributes' => [
212
                'id' 			=> 'industry_id',
213
                'multiple'      => 'yes',
214
             ],
215
             'options' => [
216
                'disable_inarray_validator' => true,
217
                'value_options' => $this->getIndustrySelectOptions($adapter)
218
            ]
219
        ]);
220
 
221
        $this->add([
222
            'name' => 'target',
223
            'type' => \Laminas\Form\Element\Select::class,
224
            'attributes' => [
225
                'id' 			=> 'target',
226
            ],'options' => [
7539 eleazar 227
                'empty_option' => 'LABEL_SEGMENT',
7292 eleazar 228
                'value_options' => [
229
                    OrganizationalClimate::TARGET_SEGMENTED => 'LABEL_SEGMENTED',
7539 eleazar 230
                    OrganizationalClimate::TARGET_NON_SEGMENTED => 'LABEL_NON_SEGMENTED',
7292 eleazar 231
                ],
232
            ],
233
        ]);
234
 
235
        $this->add([
236
            'name' => 'status',
237
            'type' => \Laminas\Form\Element\Select::class,
238
            'attributes' => [
239
                'id' 			=> 'status',
240
            ],
241
            'options' => [
242
                'empty_option' => 'LABEL_STATUS',
243
                'value_options' => [
244
                    OrganizationalClimate::STATUS_ACTIVE => 'LABEL_ACTIVE',
245
                    OrganizationalClimate::STATUS_INACTIVE => 'LABEL_INACTIVE',
246
                ],
247
            ],
248
        ]);
249
 
250
        $this->add([
251
            'name' => 'identity',
252
            'type' => \Laminas\Form\Element\Select::class,
253
            'attributes' => [
254
                'id' 			=> 'identity',
255
            ],
256
            'options' => [
257
                'empty_option' => 'LABEL_STATUS',
258
                'value_options' => [
259
                    OrganizationalClimate::IDENTITY_YES => 'LABEL_YES',
260
                    OrganizationalClimate::IDENTITY_NO => 'LABEL_NO',
261
                ],
262
            ],
263
        ]);
264
 
265
    }
266
 
267
    /**
268
     *
269
     * @param AdapterInterface $adapter
270
     */
271
    private function getFormSelectOptions($adapter, $company_id)
272
    {
273
        $options = [];
274
 
275
        $mapper = OrganizationalClimateFormMapper::getInstance($adapter);
276
        $records = $mapper->fetchAllByCompanyId($company_id);
277
 
278
 
279
        foreach($records as $record)
280
        {
281
            $options[$record->uuid] = $record->name;
282
        }
283
        return $options;
284
    }
285
 
286
    private function getDescriptionSelectOptions($adapter, $company_id)
287
    {
288
        $options = [];
289
 
290
        $mapper = JobDescriptionMapper::getInstance($adapter);
15086 efrain 291
        $records = $mapper->fetchAllActiveByCompanyId($company_id);
7292 eleazar 292
 
293
 
294
 
295
        foreach($records as $record)
296
        {
297
            $options[$record->uuid] = $record->name;
298
        }
299
 
300
 
301
        return $options;
302
    }
303
 
304
    function getSkillSelectOptions($adapter)
305
    {
306
        $options = [];
307
 
308
        $mapper = SkillMapper::getInstance($adapter);
15086 efrain 309
        $records = $mapper->fetchAllActive();
7292 eleazar 310
 
311
        foreach($records as $record)
312
        {
313
            $options[$record->uuid] = $record->name;
314
        }
315
        return $options;
316
    }
317
 
318
    function getIndustrySelectOptions($adapter)
319
    {
320
        $options = [];
321
 
322
        $mapper = IndustryMapper::getInstance($adapter);
15086 efrain 323
        $records = $mapper->fetchAllActive();
7292 eleazar 324
 
325
        foreach($records as $record)
326
        {
327
            $options[$record->uuid] = $record->name;
328
        }
329
        return $options;
330
    }
331
 
332
    function getLanguageSelectOptions($adapter)
333
    {
334
        $options = [];
335
 
336
        $mapper = LanguageMapper::getInstance($adapter);
337
        $records = $mapper->fetchAll();
338
 
339
        foreach($records as $record)
340
        {
341
            $options[$record->id] = $record->name;
342
        }
343
        return $options;
344
    }
345
 
346
}