Proyectos de Subversion LeadersLinked - Backend

Rev

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