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
 
7
use Laminas\Form\Form;
8
 
9
class CompanyProfileSocialNetworkForm extends Form
10
{
11
    public function __construct()
12
    {
13
        parent::__construct();
14
        $this->setInputFilter(new CompanyProfileSocialNetworkFilter());
15
 
16
 
17
        $this->add([
18
            'name' => 'facebook',
19
            'type' => \Laminas\Form\Element\Text::class,
20
            'attributes' => [
21
                'maxlength' 	=> 250,
22
                'id' 			=> 'facebook',
23
            ]
24
        ]);
25
 
26
        $this->add([
27
            'name' => 'twitter',
28
            'type' => \Laminas\Form\Element\Text::class,
29
            'attributes' => [
30
                'maxlength' 	=> 250,
31
                'id' 			=> 'twitter',
32
            ]
33
        ]);
34
 
35
        $this->add([
36
            'name' => 'instagram',
37
            'type' => \Laminas\Form\Element\Text::class,
38
            'attributes' => [
39
                'maxlength' 	=> 250,
40
                'id' 			=> 'instagram',
41
            ]
42
        ]);
43
 
44
    }
45
 
46
}