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
use Laminas\Db\Adapter\AdapterInterface;
9
 
10
 
11
class CompanyProfileFoundationYearForm extends Form
12
{
13
    public function __construct()
14
    {
15
        parent::__construct();
16
        $this->setInputFilter(new CompanyProfileFoundationYearFilter());
17
 
18
 
19
        $this->add([
20
            'name' => 'foundation_year',
21
            'type' => \Laminas\Form\Element\Text::class,
22
            'attributes' => [
23
                'maxlength' 	=> 4,
24
                'id' 			=> 'foundation_year',
25
            ]
26
        ]);
27
 
28
 
29
 
30
    }
31
 
32
}