Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4865 eleazar 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form;
6
use LeadersLinked\Mapper\IndustryMapper;
7
use LeadersLinked\Mapper\JobDescriptionMapper;
5074 eleazar 8
use LeadersLinked\Mapper\SkillMapper;
5079 eleazar 9
use LeadersLinked\Mapper\LanguageMapper;
4865 eleazar 10
use LeadersLinked\Mapper\CompanyMapper;
11
use Laminas\Form\Form;
12
use Laminas\Db\Adapter\AdapterInterface;
13
use LeadersLinked\Mapper\SurveyMapper;
14
use LeadersLinked\Mapper\SurveyFormMapper;
15
use LeadersLinked\Model\Survey;
16
 
17
 
18
class SurveySegmentedForm extends Form
19
{
20
 
21
    public function __construct($adapter, $company_id)
22
    {
23
        parent::__construct();
5041 efrain 24
        $this->setInputFilter(new SurveySegmentedFilter($adapter, $company_id));
4867 eleazar 25
 
26
        $this->add([
27
            'name' => 'segmented',
28
            'type' => \Laminas\Form\Element\Select::class,
29
            'attributes' => [
30
                'id' 			=> 'segmented',
31
            ],'options' => [
5017 efrain 32
                'disable_inarray_validator' => true,
4867 eleazar 33
                'empty_option' => 'LABEL_SEGMENTED',
34
                'value_options' => [
4870 eleazar 35
                   'description' => 'LABEL_JOB_DESCRIPTION',
5081 eleazar 36
                   'skill' => 'LABEL_SKILLS',
4870 eleazar 37
                   'industry' => 'LABEL_INDUSTRY',
38
                   'location' => 'LABEL_LOCATION',
5074 eleazar 39
                   'languages' => 'LABEL_LANGUAGES',
4867 eleazar 40
                ],
41
            ],
42
        ]);
4865 eleazar 43
 
44
        $this->add([
45
            'name' => 'job_description_id',
46
            'type' => \Laminas\Form\Element\Select::class,
47
             'attributes' => [
48
                'id' 			=> 'job_description_id',
5007 eleazar 49
                'multiple'      => 'yes',
4865 eleazar 50
             ],
51
             'options' => [
5041 efrain 52
                'disable_inarray_validator' => true,
4865 eleazar 53
                'value_options' => $this->getDescriptionSelectOptions($adapter, $company_id)
54
            ]
55
        ]);
56
 
57
        $this->add([
5074 eleazar 58
            'name' => 'skill_id',
4865 eleazar 59
            'type' => \Laminas\Form\Element\Select::class,
60
             'attributes' => [
5074 eleazar 61
                'id' 			=> 'skill_id',
5007 eleazar 62
                'multiple'      => 'yes',
4865 eleazar 63
             ],
64
             'options' => [
5042 eleazar 65
                'disable_inarray_validator' => true,
5076 eleazar 66
                'value_options' => $this->getSkillSelectOptions($adapter)
4865 eleazar 67
            ]
68
        ]);
69
 
70
        $this->add([
5083 eleazar 71
            'name' => 'language_id',
4865 eleazar 72
            'type' => \Laminas\Form\Element\Select::class,
73
             'attributes' => [
5083 eleazar 74
                'id' 			=> 'language_id',
5007 eleazar 75
                'multiple'      => 'yes',
4865 eleazar 76
             ],
77
             'options' => [
5082 eleazar 78
                'disable_inarray_validator' => true,
5074 eleazar 79
                'value_options' => $this->getLanguageSelectOptions($adapter)
4865 eleazar 80
            ]
81
        ]);
82
 
83
        $this->add([
84
            'name' => 'location',
85
            'type' => \Laminas\Form\Element\Text::class,
86
            'attributes' => [
87
                'maxlength' 	=> 250,
88
                'id' 			=> 'location',
89
            ]
90
        ]);
91
 
92
        $this->add([
93
            'name' => 'address1',
94
            'type' => \Laminas\Form\Element\Hidden::class,
95
            'attributes' => [
96
                'id'    => 'address1',
97
            ]
98
        ]);
99
 
100
        $this->add([
101
            'name' => 'address2',
102
            'type' => \Laminas\Form\Element\Hidden::class,
103
            'attributes' => [
104
                'id'    => 'address2',
105
            ]
106
        ]);
107
 
108
        $this->add([
109
            'name' => 'country',
110
            'type' => \Laminas\Form\Element\Hidden::class,
111
            'attributes' => [
112
                'id'    => 'country',
113
            ]
114
        ]);
115
 
116
        $this->add([
117
            'name' => 'state',
118
            'type' => \Laminas\Form\Element\Hidden::class,
119
            'attributes' => [
120
                'id'    => 'state',
121
            ]
122
        ]);
123
 
124
        $this->add([
125
            'name' => 'city1',
126
            'type' => \Laminas\Form\Element\Hidden::class,
127
            'attributes' => [
128
                'id'    => 'city1',
129
            ]
130
        ]);
131
 
132
        $this->add([
133
            'name' => 'city2',
134
            'type' => \Laminas\Form\Element\Hidden::class,
135
            'attributes' => [
136
                'id'    => 'city2',
137
            ]
138
        ]);
139
 
140
        $this->add([
141
            'name' => 'postal_code',
142
            'type' => \Laminas\Form\Element\Hidden::class,
143
            'attributes' => [
144
                'id'    => 'postal_code',
145
            ]
146
        ]);
147
 
148
        $this->add([
149
            'name' => 'latitude',
150
            'type' => \Laminas\Form\Element\Hidden::class,
151
            'attributes' => [
152
                'id'    => 'latitude',
153
            ]
154
        ]);
155
 
156
        $this->add([
157
            'name' => 'longitude',
158
            'type' => \Laminas\Form\Element\Hidden::class,
159
            'attributes' => [
160
                'id'    => 'longitude',
161
            ]
162
        ]);
163
 
164
        $this->add([
165
            'name' => 'industry_id',
166
            'type' => \Laminas\Form\Element\Select::class,
167
             'attributes' => [
168
                'id' 			=> 'industry_id',
5007 eleazar 169
                'multiple'      => 'yes',
4865 eleazar 170
             ],
171
             'options' => [
5042 eleazar 172
                'disable_inarray_validator' => true,
5051 eleazar 173
                'value_options' => $this->getIndustrySelectOptions($adapter)
4865 eleazar 174
            ]
175
        ]);
176
 
177
    }
178
 
179
    /**
180
     *
181
     * @param AdapterInterface $adapter
182
     */
183
    private function getFormSelectOptions($adapter, $company_id)
184
    {
185
        $options = [];
186
 
187
        $mapper = SurveyFormMapper::getInstance($adapter);
188
        $records = $mapper->fetchAllByCompanyId($company_id);
189
 
190
 
191
        foreach($records as $record)
192
        {
193
            $options[$record->uuid] = $record->name;
194
        }
195
        return $options;
196
    }
197
 
198
    private function getDescriptionSelectOptions($adapter, $company_id)
199
    {
200
        $options = [];
201
 
202
        $mapper = JobDescriptionMapper::getInstance($adapter);
15086 efrain 203
        $records = $mapper->fetchAllActiveByCompanyId($company_id);
5038 efrain 204
 
4865 eleazar 205
 
206
 
207
        foreach($records as $record)
208
        {
209
            $options[$record->uuid] = $record->name;
210
        }
5036 efrain 211
 
212
 
4865 eleazar 213
        return $options;
214
    }
215
 
5074 eleazar 216
    function getSkillSelectOptions($adapter)
4865 eleazar 217
    {
218
        $options = [];
219
 
5074 eleazar 220
        $mapper = SkillMapper::getInstance($adapter);
15086 efrain 221
        $records = $mapper->fetchAllActive();
4865 eleazar 222
 
223
        foreach($records as $record)
224
        {
225
            $options[$record->uuid] = $record->name;
226
        }
227
        return $options;
228
    }
229
 
230
    function getIndustrySelectOptions($adapter)
231
    {
232
        $options = [];
233
 
234
        $mapper = IndustryMapper::getInstance($adapter);
15086 efrain 235
        $records = $mapper->fetchAllActive();
4865 eleazar 236
 
237
        foreach($records as $record)
238
        {
239
            $options[$record->uuid] = $record->name;
240
        }
241
        return $options;
242
    }
243
 
5077 eleazar 244
    function getLanguageSelectOptions($adapter)
4865 eleazar 245
    {
246
        $options = [];
247
 
5077 eleazar 248
        $mapper = LanguageMapper::getInstance($adapter);
4865 eleazar 249
        $records = $mapper->fetchAll();
250
 
251
        foreach($records as $record)
252
        {
253
            $options[$record->id] = $record->name;
254
        }
255
        return $options;
256
    }
257
 
258
}