Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16770 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15403 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form\JobDescription;
6
 
7
use Laminas\Form\Form;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Log\LoggerInterface;
10
use LeadersLinked\Mapper\JobDescriptionMapper;
11
use LeadersLinked\Mapper\JobDescriptionSubordinateMapper;
12
 
13
class JobDescriptionForm extends Form
14
{
15
    /**
16
     *
17
     * @param AdapterInterface $adapter
18
     * @param int $company_id
19
     * @param int $id
20
     */
21
    public function __construct($adapter, $company_id, $job_description_id = 0)
22
    {
23
        parent::__construct();
24
        $this->setInputFilter(new JobDescriptionFilter($adapter));
25
 
16784 efrain 26
 
15403 efrain 27
        $this->add([
28
            'name' => 'competencies',
29
            'type' => \Laminas\Form\Element\Hidden::class,
30
            'attributes' => [
31
                'id'    => 'competencies',
32
            ]
33
        ]);
34
 
35
        $this->add([
36
            'name' => 'name',
37
            'type' => \Laminas\Form\Element\Text::class,
38
             'attributes' => [
39
                'maxlength' 	=> 128,
40
                'id' 			=> 'name',
41
            ]
42
         ]);
43
 
44
        $this->add([
45
            'name' => 'functions',
46
            'type' => \Laminas\Form\Element\Textarea::class,
47
            'attributes' => [
15446 efrain 48
                'maxlength' 	=> 1024,
15403 efrain 49
                'id'    => 'functions',
15446 efrain 50
                'rows' => 10
15403 efrain 51
            ]
52
        ]);
53
 
54
        $this->add([
55
            'name' => 'objectives',
56
            'type' => \Laminas\Form\Element\Textarea::class,
57
            'attributes' => [
15446 efrain 58
                'maxlength' 	=> 1024,
15403 efrain 59
                'id'    => 'objectives',
15446 efrain 60
                'rows' => 10
15403 efrain 61
            ]
62
        ]);
63
 
64
        $this->add([
65
            'name' => 'status',
66
            'type' => \Laminas\Form\Element\Checkbox::class,
67
            'attributes' => [
68
                'id' 			=> 'status',
69
            ],
70
            'options' => [
16766 efrain 71
                'use_hidden_element' => false,
15403 efrain 72
                'unchecked_value' => \LeadersLinked\Model\JobDescription::STATUS_INACTIVE,
73
                'checked_value'=> \LeadersLinked\Model\JobDescription::STATUS_ACTIVE,
74
            ]
75
        ]);
76
 
77
 
78
    }
79
}