Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form;
6
use Laminas\Form\Form;
7
use Laminas\Db\Adapter\AdapterInterface;
8
use Laminas\Log\LoggerInterface;
9
use LeadersLinked\Mapper\CompanySizeMapper;
10
use LeadersLinked\Mapper\IndustryMapper;
11
use LeadersLinked\Mapper\JobCategoryMapper;
12
use LeadersLinked\Model\Job;
13
 
14
class CompanyJobCreateForm extends Form
15
{
16
    /**
17
     *
18
     * @param AdapterInterface $adapter
19
     */
20
    public function __construct($adapter)
21
    {
22
        parent::__construct();
23
        $this->setInputFilter(new CompanyJobCreateFilter($adapter));
24
 
25
        $this->add([
26
            'name' => 'title',
27
            'type' => \Laminas\Form\Element\Text::class,
28
             'attributes' => [
29
                'maxlength' 	=> 128,
30
                'id' 			=> 'title',
31
            ]
32
         ]);
33
 
34
        $this->add([
35
            'name' => 'last_date_of_application',
36
            'type' => \Laminas\Form\Element\Text::class,
37
            'attributes' => [
38
                'maxlength' 	=> 10,
39
                'id' 			=> 'last_date_of_application',
40
            ]
41
        ]);
42
 
43
        $this->add([
44
            'name' => 'job_category_id',
45
            'type' => \Laminas\Form\Element\Select::class,
46
            'options' => [
47
                'value_options' => $this->optionsJobCategory($adapter),
48
            ],
49
            'attributes' => [
50
                'id' => 'job_category_id',
51
            ]
52
        ]);
53
 
54
        $this->add([
55
            'name' => 'employment_type',
56
            'type' => \Laminas\Form\Element\Select::class,
57
            'options' => [
58
                'value_options' => [
59
                    Job::EMPLOYMENT_TYPE_FULL_TIME => 'LABEL_EMPLOYMENT_TYPE_FULL_TIME',
60
                    Job::EMPLOYMENT_TYPE_PART_TIME => 'LABEL_EMPLOYMENT_TYPE_PART_TIME',
61
                    Job::EMPLOYMENT_TYPE_CONTRACT => 'LABEL_EMPLOYMENT_TYPE_CONTRACT',
62
                    Job::EMPLOYMENT_TYPE_TEMPORARY => 'LABEL_EMPLOYMENT_TYPE_TEMPORARY',
63
                ]
64
            ],
65
            'attributes' => [
66
                'id' => 'employment_type',
67
            ]
68
        ]);
69
 
70
        $this->add([
71
            'name' => 'location_search',
72
            'type' => \Laminas\Form\Element\Text::class,
73
            'attributes' => [
74
                'maxlength' 	=> 250,
75
                'id' 			=> 'location_search',
76
            ]
77
        ]);
78
 
79
 
80
        $this->add([
81
            'name' => 'formatted_address',
82
            'type' => \Laminas\Form\Element\Hidden::class,
83
            'attributes' => [
84
                'id'    => 'formatted_address',
85
            ]
86
        ]);
87
 
88
        $this->add([
89
            'name' => 'address1',
90
            'type' => \Laminas\Form\Element\Hidden::class,
91
            'attributes' => [
92
                'id'    => 'address1',
93
            ]
94
        ]);
95
 
96
        $this->add([
97
            'name' => 'address2',
98
            'type' => \Laminas\Form\Element\Hidden::class,
99
            'attributes' => [
100
                'id'    => 'address2',
101
            ]
102
        ]);
103
 
104
        $this->add([
105
            'name' => 'country',
106
            'type' => \Laminas\Form\Element\Hidden::class,
107
            'attributes' => [
108
                'id'    => 'country',
109
            ]
110
        ]);
111
 
112
        $this->add([
113
            'name' => 'state',
114
            'type' => \Laminas\Form\Element\Hidden::class,
115
            'attributes' => [
116
                'id'    => 'state',
117
            ]
118
        ]);
119
 
120
        $this->add([
121
            'name' => 'city1',
122
            'type' => \Laminas\Form\Element\Hidden::class,
123
            'attributes' => [
124
                'id'    => 'city1',
125
            ]
126
        ]);
127
 
128
        $this->add([
129
            'name' => 'city2',
130
            'type' => \Laminas\Form\Element\Hidden::class,
131
            'attributes' => [
132
                'id'    => 'city2',
133
            ]
134
        ]);
135
 
136
        $this->add([
137
            'name' => 'postal_code',
138
            'type' => \Laminas\Form\Element\Hidden::class,
139
            'attributes' => [
140
                'id'    => 'postal_code',
141
            ]
142
        ]);
143
 
144
        $this->add([
145
            'name' => 'latitude',
146
            'type' => \Laminas\Form\Element\Hidden::class,
147
            'attributes' => [
148
                'id'    => 'latitude',
149
            ]
150
        ]);
151
 
152
        $this->add([
153
            'name' => 'longitude',
154
            'type' => \Laminas\Form\Element\Hidden::class,
155
            'attributes' => [
156
                'id'    => 'longitude',
157
            ]
158
        ]);
159
 
160
 
161
    }
162
 
163
    /**
164
     *
165
     * @param AdapterInterface $adapter
166
     * @param LoggerInterface $logger
167
     * @return array
168
     */
169
    private function optionsJobCategory($adapter)
170
    {
171
        $jobCategoryMapper = JobCategoryMapper::getInstance($adapter);
172
        $jobCategories = $jobCategoryMapper->fetchAllActives();
173
 
174
        $options = [];
175
        foreach($jobCategories as $jobCategory)
176
        {
177
            $options[$jobCategory->uuid] = $jobCategory->name;
178
        }
179
 
180
        return $options;
181
    }
182
 
183
 
184
}