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 JobTitleForm extends Form
16
{
17
 
18
    public function __construct()
19
    {
20
        parent::__construct();
21
        $this->setInputFilter(new JobTitleFilter());
22
 
23
        $this->add([
24
            'name' => 'title',
25
            'type' => \Laminas\Form\Element\Text::class,
26
             'attributes' => [
27
                'maxlength' 	=> 128,
28
                'id' 			=> 'title',
29
            ]
30
         ]);
31
 
32
 
33
 
34
    }
35
 
36
 
37
 
38
}