Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15461 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form\RecruitmentSelection;
6
 
7
use Laminas\Form\Form;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Log\LoggerInterface;
10
use LeadersLinked\Mapper\IndustryMapper;
11
use LeadersLinked\Mapper\RecruitmentSelectionVacancyMapper;
12
use LeadersLinked\Mapper\RecruitmentSelectionCandidateMapper;
13
use LeadersLinked\Model\RecruitmentSelectionCandidate;
14
 
15
class RecruitmentSelectionApplicationFileForm extends Form
16
{
17
 
18
 
19
    public function __construct()
20
    {
21
        parent::__construct();
22
        $this->setInputFilter(new RecruitmentSelectionApplicationFileFilter());
23
 
24
 
25
        $this->add([
26
            'name' => 'name',
27
            'type' => \Laminas\Form\Element\Text::class,
28
             'attributes' => [
29
                'maxlength' 	=> 128,
30
                'id' 			=> 'name',
31
            ]
32
         ]);
33
 
34
 
35
        $this->add([
36
            'name' => 'file',
37
            'type' => \Laminas\Form\Element\File::class,
38
             'attributes' => [
39
                'id' => 'file',
40
            ]
41
         ]);
42
 
43
    }
44
 
45
 
46
}