Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
15398 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form\DiscoveryContact;
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 Laminas\Db\Adapter\Adapter;
16766 efrain 13
use LeadersLinked\Model\DiscoveryContact;
15398 efrain 14
 
15
class ContactForm extends Form
16
{
17
 
18
    /**
19
     *
20
     * @param Adapter $adapter
21
     * @param int $company_id
22
     * @param int $exclude_id
23
     */
24
    public function __construct($adapter, $company_id, $exclude_id)
25
    {
26
        parent::__construct();
27
        $this->setInputFilter(new ContactFilter($adapter, $company_id, $exclude_id));
28
 
29
 
30
        $this->add([
31
            'name' => 'first_name',
32
            'type' => \Laminas\Form\Element\Text::class,
33
             'attributes' => [
34
                'maxlength' 	=> 128,
35
                'id' 			=> 'first_name',
36
            ]
37
        ]);
38
 
39
 
40
 
41
        $this->add([
42
            'name' => 'last_name',
43
            'type' => \Laminas\Form\Element\Text::class,
44
            'attributes' => [
45
                'maxlength' 	=> 128,
46
                'id' 			=> 'last_name',
47
            ]
48
        ]);
49
 
50
        $this->add([
51
            'name' => 'corporate_email',
52
            'type' => \Laminas\Form\Element\Text::class,
53
            'attributes' => [
54
                'maxlength' 	=> 250,
55
                'id' 			=> 'corporate_email',
56
            ]
57
        ]);
58
 
59
        $this->add([
60
            'name' => 'company',
61
            'type' => \Laminas\Form\Element\Text::class,
62
            'attributes' => [
63
                'maxlength' 	=> 128,
64
                'id' 			=> 'company',
65
            ]
66
        ]);
67
 
68
        $this->add([
69
            'name' => 'position',
70
            'type' => \Laminas\Form\Element\Text::class,
71
            'attributes' => [
72
                'maxlength' 	=> 128,
73
                'id' 			=> 'position',
74
            ]
75
        ]);
76
 
77
        $this->add([
78
            'name' => 'country',
79
            'type' => \Laminas\Form\Element\Text::class,
80
            'attributes' => [
81
                'maxlength' 	=> 128,
82
                'id' 			=> 'country',
83
            ]
84
        ]);
85
 
86
        $this->add([
87
            'name' => 'state',
88
            'type' => \Laminas\Form\Element\Text::class,
89
            'attributes' => [
90
                'maxlength' 	=> 128,
91
                'id' 			=> 'state',
92
            ]
93
        ]);
94
 
95
        $this->add([
96
            'name' => 'city',
97
            'type' => \Laminas\Form\Element\Text::class,
98
            'attributes' => [
99
                'maxlength' 	=> 128,
100
                'id' 			=> 'city',
101
            ]
102
        ]);
103
 
104
        $this->add([
105
            'name' => 'personal_email',
106
            'type' => \Laminas\Form\Element\Text::class,
107
            'attributes' => [
108
                'maxlength' 	=> 250,
109
                'id' 			=> 'personal_email',
110
            ]
111
        ]);
112
 
113
        $this->add([
114
            'name' => 'phone',
115
            'type' => \Laminas\Form\Element\Text::class,
116
            'attributes' => [
117
                'maxlength' 	=> 25,
118
                'id' 			=> 'phone',
119
            ]
120
        ]);
121
 
122
        $this->add([
123
            'name' => 'phone_extension',
124
            'type' => \Laminas\Form\Element\Text::class,
125
            'attributes' => [
126
                'maxlength' 	=> 5,
127
                'id' 			=> 'phone_extension',
128
            ]
129
        ]);
130
 
131
 
132
        $this->add([
133
            'name' => 'celular',
134
            'type' => \Laminas\Form\Element\Text::class,
135
            'attributes' => [
136
                'maxlength' 	=> 25,
137
                'id' 			=> 'celular',
138
            ]
139
        ]);
140
 
141
 
142
        $this->add([
143
            'name' => 'whatsapp',
144
            'type' => \Laminas\Form\Element\Text::class,
145
            'attributes' => [
146
                'maxlength' 	=> 25,
147
                'id' 			=> 'whatsapp',
148
            ]
149
        ]);
150
 
151
        $this->add([
152
            'name' => 'linkedin',
153
            'type' => \Laminas\Form\Element\Text::class,
154
            'attributes' => [
155
                'maxlength' 	=> 250,
156
                'id' 			=> 'linkedin',
157
            ]
158
        ]);
159
 
160
 
15831 efrain 161
        $this->add([
162
            'name' => 'sector',
163
            'type' => \Laminas\Form\Element\Text::class,
164
            'attributes' => [
165
                'maxlength' 	=> 250,
166
                'id' 			=> 'sector',
167
            ]
168
        ]);
16766 efrain 169
 
170
 
171
        $this->add([
172
            'name' => 'scholarship',
173
            'type' => \Laminas\Form\Element\Select::class,
174
            'attributes' => [
175
                'id' => 'scholarship',
176
            ],
177
            'options' => [
178
                'value_options' => [
179
                    DiscoveryContact::SCHOLARSHIP_NO => 'LABEL_NO',
180
                    DiscoveryContact::SCHOLARSHIP_YES => 'LABEL_YES',
181
                ]
182
            ]
183
        ]);
184
 
185
 
15398 efrain 186
 
16766 efrain 187
 
15398 efrain 188
 
189
 
190
    }
191
}