Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16987 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15459 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form\Network;
6
 
7
use Laminas\Form\Form;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Log\LoggerInterface;
10
use LeadersLinked\Mapper\CompanySizeMapper;
11
use LeadersLinked\Mapper\IndustryMapper;
12
use LeadersLinked\Mapper\ThemeMapper;
13
use LeadersLinked\Model\Network;
14
 
15
class NetworkCreateForm extends Form
16
{
17
    /**
18
     *
19
     * @param AdapterInterface $adapter
20
     */
21
    public function __construct($adapter)
22
    {
23
 
24
        parent::__construct();
25
        $this->setInputFilter(new NetworkCreateFilter($adapter));
26
 
27
        $this->add([
28
            'name' => 'first_name',
29
            'type' => \Laminas\Form\Element\Text::class,
30
            'attributes' => [
31
                'maxlength' 	=> 64,
32
                'id' 			=> 'first_name',
33
            ]
34
        ]);
35
        $this->add([
36
            'name' => 'last_name',
37
            'type' => \Laminas\Form\Element\Text::class,
38
            'attributes' => [
39
                'maxlength' 	=> 64,
40
                'id' 			=> 'last_name',
41
            ]
42
        ]);
43
        $this->add([
44
            'name' => 'email',
45
            'type' => \Laminas\Form\Element\Text::class,
46
            'attributes' => [
17002 efrain 47
                'maxlength' 	=> 250,
15459 efrain 48
                'id' 			=> 'email',
49
            ]
50
        ]);
51
        $this->add([
52
            'name' => 'password',
53
            'type' => \Laminas\Form\Element\Text::class,
54
            'attributes' => [
17002 efrain 55
                'maxlength' 	=> 25,
15459 efrain 56
                'id' 			=> 'password',
57
            ]
58
        ]);
59
        $this->add([
60
            'name' => 'confirmation',
61
            'type' => \Laminas\Form\Element\Text::class,
62
            'attributes' => [
17002 efrain 63
                'maxlength' 	=> 25,
15459 efrain 64
                'id' 			=> 'confirmation',
65
            ]
66
        ]);
67
 
68
        $this->add([
69
            'name' => 'company',
70
            'type' => \Laminas\Form\Element\Text::class,
71
             'attributes' => [
72
                'maxlength' 	=> 128,
73
                'id' 			=> 'company',
74
            ]
75
         ]);
76
        $this->add([
77
             'name' => 'industry_id',
78
             'type' => \Laminas\Form\Element\Select::class,
79
             'options' => [
80
                 'value_options' => $this->optionsIndustry($adapter),
81
             ],
82
             'attributes' => [
83
                 'id' => 'industry_id',
84
             ]
85
         ]);
86
        $this->add([
87
            'name' => 'company_size_id',
88
            'type' => \Laminas\Form\Element\Select::class,
89
            'options' => [
90
                'value_options' => $this->optionsCompanySize($adapter),
91
            ],
92
            'attributes' => [
93
                'id' => 'company_size_id',
94
            ]
95
        ]);
96
        $this->add([
97
            'name' => 'main_hostname',
98
            'type' => \Laminas\Form\Element\Text::class,
99
            'attributes' => [
100
                'maxlength' 	=> 250,
101
                'id' 			=> 'admin_hostname',
102
            ]
103
        ]);
104
        $this->add([
105
            'name' => 'alternative_hostname',
106
            'type' => \Laminas\Form\Element\Text::class,
107
            'attributes' => [
108
                'maxlength' 	=> 250,
109
                'id' 			=> 'alternative_hostname',
110
            ]
111
        ]);
112
        $this->add([
113
            'name' => 'admin_hostname',
114
            'type' => \Laminas\Form\Element\Text::class,
115
            'attributes' => [
116
                'maxlength' 	=> 250,
117
                'id' 			=> 'admin_hostname',
118
            ]
119
        ]);
120
 
121
        $this->add([
16948 efrain 122
            'name' => 'service_hostname',
123
            'type' => \Laminas\Form\Element\Text::class,
124
            'attributes' => [
125
                'maxlength' 	=> 250,
126
                'id' 			=> 'service_hostname',
127
            ]
128
        ]);
129
 
130
 
131
 
132
        $this->add([
15459 efrain 133
            'name' => 'theme_id',
134
            'type' => \Laminas\Form\Element\Select::class,
135
            'attributes' => [
136
                'id' => 'theme_id',
137
            ],
138
            'options' => [
139
                'value_options' => $this->optionsTheme($adapter)
140
            ]
141
        ]);
142
 
15831 efrain 143
        $this->add([
144
            'name' => 'moodle_name',
145
            'type' => \Laminas\Form\Element\Text::class,
146
            'attributes' => [
147
                'maxlength' 	=> 20,
148
                'id' 			=> 'moodle_name',
149
            ]
150
        ]);
15459 efrain 151
 
15831 efrain 152
 
15459 efrain 153
        $this->add([
154
            'name' => 'moodle_url',
155
            'type' => \Laminas\Form\Element\Text::class,
156
            'attributes' => [
157
                'maxlength' 	=> 250,
158
                'id' 			=> 'moodle_url',
159
            ]
160
        ]);
161
 
15831 efrain 162
        $this->add([
16987 efrain 163
            'name' => 'microlearning_name',
164
            'type' => \Laminas\Form\Element\Text::class,
165
            'attributes' => [
166
                'maxlength' 	=> 250,
167
                'id' 			=> 'microlearning_name',
168
            ]
169
        ]);
170
 
171
        $this->add([
15831 efrain 172
            'name' => 'microlearning_appstore',
173
            'type' => \Laminas\Form\Element\Text::class,
174
            'attributes' => [
175
                'maxlength' 	=> 250,
176
                'id' 			=> 'microlearning_appstore',
177
            ]
178
        ]);
15459 efrain 179
 
180
        $this->add([
15831 efrain 181
            'name' => 'microlearning_playstore',
182
            'type' => \Laminas\Form\Element\Text::class,
183
            'attributes' => [
184
                'maxlength' 	=> 250,
185
                'id' 			=> 'mmicrolearning_playstore',
186
            ]
187
        ]);
188
 
189
 
190
        $this->add([
15459 efrain 191
            'name' => 'relationship_user_mode',
192
            'type' => \Laminas\Form\Element\Select::class,
193
            'attributes' => [
194
                'id' => 'relationship_user_mode',
195
            ],
196
            'options' => [
197
                'value_options' => [
198
                    Network::RELATIONSHIP_USER_MODE_USER_2_USER => 'LABEL_RELATIONSHIP_USER_MODE_USER_2_USER',
199
                    Network::RELATIONSHIP_USER_MODE_ALL_2_ALL => 'LABEL_RELATIONSHIP_USER_MODE_ALL_2_ALL',
200
                ]
201
            ]
202
        ]);
203
 
204
 
205
    }
206
 
207
    /**
208
     *
209
     * @param AdapterInterface $adapter
210
     * @param LoggerInterface $logger
211
     * @return array
212
     */
213
    private function optionsCompanySize($adapter)
214
    {
215
        $companySizeMapper = CompanySizeMapper::getInstance($adapter);
216
        $companySizes = $companySizeMapper->fetchAllActive();
217
 
218
        $options = [];
219
        foreach($companySizes as $companySize)
220
        {
221
            $options[$companySize->uuid] = $companySize->name . ' ( ' . $companySize->minimum_no_of_employee . ' - ' . $companySize->maximum_no_of_employee . ' )';
222
        }
223
 
224
        return $options;
225
    }
226
 
227
    /**
228
     *
229
     * @param AdapterInterface $adapter
230
     * @return array
231
     */
232
    private function optionsIndustry($adapter)
233
    {
234
        $industryMapper = IndustryMapper::getInstance($adapter);
235
        $industries  = $industryMapper->fetchAllActive();
236
 
237
        $options = [];
238
        foreach($industries as $industry)
239
        {
240
            $options[$industry->uuid] = $industry->name;
241
        }
242
 
243
        return $options;
244
    }
245
 
246
    /**
247
     *
248
     * @param AdapterInterface $adapter
249
     */
250
    private function optionsTheme($adapter)
251
    {
252
        $options = [];
253
 
254
        $mapper = ThemeMapper::getInstance($adapter);
255
        $records = $mapper->fetchAll();
256
 
257
        foreach($records as $record)
258
        {
259
            $options[$record->uuid] = $record->name;
260
        }
261
        return $options;
262
    }
263
 
264
}