Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

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