Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16758 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;
13
 
14
class ContactDownloadForm extends Form
15
{
16
 
17
    public function __construct()
18
    {
19
        parent::__construct();
20
        $this->setInputFilter(new ContactDownloadFilter());
21
 
22
 
23
        $this->add([
24
            'name' => 'first_name',
25
            'type' => \Laminas\Form\Element\Text::class,
26
             'attributes' => [
27
                'maxlength' 	=> 128,
28
                'id' 			=> 'first_name',
29
            ]
30
        ]);
31
 
32
 
33
 
34
        $this->add([
35
            'name' => 'last_name',
36
            'type' => \Laminas\Form\Element\Text::class,
37
            'attributes' => [
38
                'maxlength' 	=> 128,
39
                'id' 			=> 'last_name',
40
            ]
41
        ]);
42
 
43
        $this->add([
44
            'name' => 'corporate_email',
45
            'type' => \Laminas\Form\Element\Text::class,
46
            'attributes' => [
47
                'maxlength' 	=> 250,
48
                'id' 			=> 'corporate_email',
49
            ]
50
        ]);
51
 
52
        $this->add([
53
            'name' => 'company',
54
            'type' => \Laminas\Form\Element\Text::class,
55
            'attributes' => [
56
                'maxlength' 	=> 128,
57
                'id' 			=> 'company',
58
            ]
59
        ]);
60
 
61
        $this->add([
62
            'name' => 'position',
63
            'type' => \Laminas\Form\Element\Text::class,
64
            'attributes' => [
65
                'maxlength' 	=> 128,
66
                'id' 			=> 'position',
67
            ]
68
        ]);
69
 
70
        $this->add([
71
            'name' => 'country',
72
            'type' => \Laminas\Form\Element\Text::class,
73
            'attributes' => [
74
                'maxlength' 	=> 128,
75
                'id' 			=> 'country',
76
            ]
77
        ]);
78
 
79
        $this->add([
80
            'name' => 'state',
81
            'type' => \Laminas\Form\Element\Text::class,
82
            'attributes' => [
83
                'maxlength' 	=> 128,
84
                'id' 			=> 'state',
85
            ]
86
        ]);
87
 
88
        $this->add([
89
            'name' => 'city',
90
            'type' => \Laminas\Form\Element\Text::class,
91
            'attributes' => [
92
                'maxlength' 	=> 128,
93
                'id' 			=> 'city',
94
            ]
95
        ]);
96
 
97
        $this->add([
98
            'name' => 'personal_email',
99
            'type' => \Laminas\Form\Element\Text::class,
100
            'attributes' => [
101
                'maxlength' 	=> 250,
102
                'id' 			=> 'personal_email',
103
            ]
104
        ]);
105
 
106
        $this->add([
107
            'name' => 'phone',
108
            'type' => \Laminas\Form\Element\Text::class,
109
            'attributes' => [
110
                'maxlength' 	=> 25,
111
                'id' 			=> 'phone',
112
            ]
113
        ]);
114
 
115
        $this->add([
116
            'name' => 'phone_extension',
117
            'type' => \Laminas\Form\Element\Text::class,
118
            'attributes' => [
119
                'maxlength' 	=> 5,
120
                'id' 			=> 'phone_extension',
121
            ]
122
        ]);
123
 
124
 
125
        $this->add([
126
            'name' => 'celular',
127
            'type' => \Laminas\Form\Element\Text::class,
128
            'attributes' => [
129
                'maxlength' 	=> 25,
130
                'id' 			=> 'celular',
131
            ]
132
        ]);
133
 
134
 
135
        $this->add([
136
            'name' => 'whatsapp',
137
            'type' => \Laminas\Form\Element\Text::class,
138
            'attributes' => [
139
                'maxlength' 	=> 25,
140
                'id' 			=> 'whatsapp',
141
            ]
142
        ]);
143
 
144
        $this->add([
145
            'name' => 'linkedin',
146
            'type' => \Laminas\Form\Element\Text::class,
147
            'attributes' => [
148
                'maxlength' 	=> 250,
149
                'id' 			=> 'linkedin',
150
            ]
151
        ]);
152
 
153
 
154
        $this->add([
155
            'name' => 'sector',
156
            'type' => \Laminas\Form\Element\Text::class,
157
            'attributes' => [
158
                'maxlength' 	=> 250,
159
                'id' 			=> 'sector',
160
            ]
161
        ]);
162
 
163
 
164
 
165
    }
166
}