Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16784 | | 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
 
16787 efrain 26
 
16784 efrain 27
 
15403 efrain 28
        $this->add([
29
            'name' => 'competencies',
30
            'type' => \Laminas\Form\Element\Hidden::class,
31
            'attributes' => [
32
                'id'    => 'competencies',
33
            ]
34
        ]);
35
 
36
        $this->add([
37
            'name' => 'name',
38
            'type' => \Laminas\Form\Element\Text::class,
39
             'attributes' => [
40
                'maxlength' 	=> 128,
41
                'id' 			=> 'name',
42
            ]
43
         ]);
44
 
45
        $this->add([
46
            'name' => 'functions',
47
            'type' => \Laminas\Form\Element\Textarea::class,
48
            'attributes' => [
15446 efrain 49
                'maxlength' 	=> 1024,
15403 efrain 50
                'id'    => 'functions',
15446 efrain 51
                'rows' => 10
15403 efrain 52
            ]
53
        ]);
54
 
55
        $this->add([
56
            'name' => 'objectives',
57
            'type' => \Laminas\Form\Element\Textarea::class,
58
            'attributes' => [
15446 efrain 59
                'maxlength' 	=> 1024,
15403 efrain 60
                'id'    => 'objectives',
15446 efrain 61
                'rows' => 10
15403 efrain 62
            ]
63
        ]);
64
 
65
        $this->add([
66
            'name' => 'status',
67
            'type' => \Laminas\Form\Element\Checkbox::class,
68
            'attributes' => [
69
                'id' 			=> 'status',
70
            ],
71
            'options' => [
16766 efrain 72
                'use_hidden_element' => false,
15403 efrain 73
                'unchecked_value' => \LeadersLinked\Model\JobDescription::STATUS_INACTIVE,
74
                'checked_value'=> \LeadersLinked\Model\JobDescription::STATUS_ACTIVE,
75
            ]
76
        ]);
77
 
16787 efrain 78
        $this->add([
79
            'name' => 'job_description_id_boss',
80
            'type' => \Laminas\Form\Element\Select::class,
81
            'attributes' => [
82
                'id' 			=> 'job_description_id_boss',
83
            ],
84
            'options' => [
85
                'empty_option' => 'LABEL_JOB_DESCRIPTION_BOSS_OPTION',
86
                'value_options' => $this->getJobDescriptionIdBoss($adapter, $company_id, $job_description_id),
87
            ]
88
        ]);
15403 efrain 89
 
16787 efrain 90
 
15403 efrain 91
    }
16787 efrain 92
 
93
    private function getJobDescriptionIdBoss($adapter, $company_id, $job_description_id = 0)
94
    {
95
        $jobDescriptionMapper = JobDescriptionMapper::getInstance($adapter);
96
        if($company_id) {
97
            $records = $jobDescriptionMapper->fetchAllByCompanyId($company_id);
98
        } else {
99
            $records = $jobDescriptionMapper->fetchAllByDefault();
100
        }
101
 
102
        $items = [];
103
        foreach($records as $record)
104
        {
105
            if($job_description_id == $record->id) {
106
                continue;
107
            }
108
 
109
            $items[ $record->uuid ] = $record->name;
110
        }
111
        return $items;
112
    }
15403 efrain 113
}