Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
66 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form;
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
use LeadersLinked\Mapper\JobDescriptionMapper;
15
 
16
class JobDescriptionForm extends Form
17
{
18
    /**
19
     *
20
     * @param AdapterInterface $adapter
21
     * @param int $company_id
22
     * @param int $id
23
     */
24
    public function __construct($adapter, $company_id, $id = 0)
25
    {
26
        parent::__construct();
27
        $this->setInputFilter(new JobDescriptionFilter($adapter));
28
 
29
        $this->add([
30
            'name' => 'name',
31
            'type' => \Laminas\Form\Element\Text::class,
32
             'attributes' => [
33
                'maxlength' 	=> 128,
34
                'id' 			=> 'name',
35
            ]
36
         ]);
37
 
38
 
39
        $this->add([
40
            'name' => 'job_description_id_boss',
41
            'type' => \Laminas\Form\Element\Select::class,
42
            'options' => [
43
                'empty_option' => 'LABEL_NA',
44
                'value_options' => $this->optionsJobDescriptions($adapter, $company_id, $id),
45
            ],
46
            'attributes' => [
47
                'id' => 'job_description_id_boss',
48
            ]
49
        ]);
50
 
51
        $this->add([
52
            'name' => 'functions',
53
            'type' => \Laminas\Form\Element\Textarea::class,
54
            'attributes' => [
55
                'id'    => 'functions',
56
            ]
57
        ]);
1200 geraldo 58
 
59
 
60
        $this->add([
61
            'name' => 'subordinates_selected',
62
            'type' => \Laminas\Form\Element\Textarea::class,
63
            'attributes' => [
64
                'id'    => 'subordinates_selected',
65
            ]
66
        ]);
67
 
68
 
69
        $this->add([
70
            'name' => 'competencies_selected',
71
            'type' => \Laminas\Form\Element\Textarea::class,
72
            'attributes' => [
73
                'id'    => 'competencies_selected',
74
            ]
75
        ]);
66 efrain 76
 
77
        $this->add([
78
            'name' => 'objectives',
79
            'type' => \Laminas\Form\Element\Textarea::class,
80
            'attributes' => [
81
                'id'    => 'objectives',
82
            ]
83
        ]);
84
 
85
 
86
 
87
 
88
        $this->add([
89
            'name' => 'status',
90
            'type' => \Laminas\Form\Element\Checkbox::class,
91
            'attributes' => [
92
                'id' 			=> 'status',
93
            ],
94
            'options' => [
95
                'use_hidden_element' => 0,
96
                'unchecked_value' => \LeadersLinked\Model\JobDescription::STATUS_INACTIVE,
97
                'checked_value'=> \LeadersLinked\Model\JobDescription::STATUS_ACTIVE,
98
            ]
99
        ]);
100
 
101
 
102
    }
103
 
104
    /**
105
     *
106
     * @param AdapterInterface $adapter
107
     * @param int $company_id
108
     * @param int $id
109
     * @param LoggerInterface $logger
110
     * @return array
111
     */
112
    private function optionsJobDescriptions($adapter, $company_id, $id)
113
    {
114
        $jobDescriptionMapper = JobDescriptionMapper::getInstance($adapter);
115
        $jobsDescription = $jobDescriptionMapper->fetchAllActiveByCompanyIdWhereIdNotEqual($company_id, $id);
116
 
117
        $options = [];
118
        foreach($jobsDescription as $jobDescription)
119
        {
120
            $options[$jobDescription->uuid] = $jobDescription->name;
121
        }
122
 
123
        return $options;
124
    }
125
 
126
 
127
}