Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16766 | Rev 16784 | 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
 
26
 
27
 
28
        $this->add([
29
            'name' => 'subordinates',
30
            'type' => \Laminas\Form\Element\Hidden::class,
31
            'attributes' => [
32
                'id'    => 'subordinates',
33
            ]
34
        ]);
35
 
36
 
37
        $this->add([
38
            'name' => 'competencies',
39
            'type' => \Laminas\Form\Element\Hidden::class,
40
            'attributes' => [
41
                'id'    => 'competencies',
42
            ]
43
        ]);
44
 
45
        $this->add([
46
            'name' => 'name',
47
            'type' => \Laminas\Form\Element\Text::class,
48
             'attributes' => [
49
                'maxlength' 	=> 128,
50
                'id' 			=> 'name',
51
            ]
52
         ]);
53
 
54
        $this->add([
55
            'name' => 'functions',
56
            'type' => \Laminas\Form\Element\Textarea::class,
57
            'attributes' => [
15446 efrain 58
                'maxlength' 	=> 1024,
15403 efrain 59
                'id'    => 'functions',
15446 efrain 60
                'rows' => 10
15403 efrain 61
            ]
62
        ]);
63
 
64
        $this->add([
65
            'name' => 'objectives',
66
            'type' => \Laminas\Form\Element\Textarea::class,
67
            'attributes' => [
15446 efrain 68
                'maxlength' 	=> 1024,
15403 efrain 69
                'id'    => 'objectives',
15446 efrain 70
                'rows' => 10
15403 efrain 71
            ]
72
        ]);
73
 
74
        $this->add([
75
            'name' => 'status',
76
            'type' => \Laminas\Form\Element\Checkbox::class,
77
            'attributes' => [
78
                'id' 			=> 'status',
79
            ],
80
            'options' => [
16766 efrain 81
                'use_hidden_element' => false,
15403 efrain 82
                'unchecked_value' => \LeadersLinked\Model\JobDescription::STATUS_INACTIVE,
83
                'checked_value'=> \LeadersLinked\Model\JobDescription::STATUS_ACTIVE,
84
            ]
85
        ]);
86
 
87
 
88
    }
89
}