Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
17002 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
17020 efrain 5
namespace LeadersLinked\Form\Job;
17002 efrain 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 LeadersLinked\Mapper\JobCategoryMapper;
13
use LeadersLinked\Model\Job;
14
 
15
class JobLastDateOfApplicationForm extends Form
16
{
17
 
18
    public function __construct()
19
    {
20
        parent::__construct();
21
        $this->setInputFilter(new JobLastDateOfApplicationFilter());
22
 
23
 
24
        $this->add([
25
            'name' => 'last_date_of_application',
26
            'type' => \Laminas\Form\Element\Text::class,
27
            'attributes' => [
28
                'maxlength' 	=> 10,
29
                'id' 			=> 'last_date_of_application',
30
            ]
31
        ]);
32
 
33
 
34
    }
35
 
36
 
37
}