Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
977 geraldo 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form;
1066 geraldo 6
use LeadersLinked\Mapper\JobDescriptionMapper;
977 geraldo 7
use Laminas\Form\Form;
1338 efrain 8
use Laminas\Db\Adapter\AdapterInterface;
977 geraldo 9
 
10
 
11
class CompanyPerformanceEvaluationFormForm extends Form
12
{
13
 
1064 geraldo 14
    public function __construct($adapter, $company_id = 0)
977 geraldo 15
    {
16
        parent::__construct();
1064 geraldo 17
        $this->setInputFilter(new CompanyPerformanceEvaluationFormFilter($adapter));
977 geraldo 18
 
19
        $this->add([
20
            'name' => 'name',
21
            'type' => \Laminas\Form\Element\Text::class,
22
             'attributes' => [
23
                'maxlength' 	=> 128,
24
                'id' 			=> 'name',
25
            ]
26
        ]);
1050 geraldo 27
 
977 geraldo 28
        $this->add([
1089 geraldo 29
            'name' => 'description',
30
            'type' => \Laminas\Form\Element\Textarea::class,
31
            'attributes' => [
32
                'id'    => 'description',
33
            ]
34
        ]);
35
 
36
 
1336 efrain 37
 
1089 geraldo 38
        $this->add([
1050 geraldo 39
            'name' => 'job_description_id',
1063 geraldo 40
            'type' => \Laminas\Form\Element\Select::class,
1050 geraldo 41
             'attributes' => [
42
                'id' 			=> 'job_description_id',
1064 geraldo 43
             ],
44
             'options' => [
45
                'value_options' => $this->getSelectOptions($adapter, $company_id)
977 geraldo 46
            ]
47
        ]);
1050 geraldo 48
 
49
 
977 geraldo 50
        $this->add([
51
            'name' => 'content',
52
            'type' => \Laminas\Form\Element\Textarea::class,
53
            'attributes' => [
54
                'id'    => 'content',
55
            ]
56
        ]);
57
 
58
        $this->add([
59
            'name' => 'status',
60
            'type' => \Laminas\Form\Element\Checkbox::class,
61
            'attributes' => [
62
                'id' 			=> 'status',
63
            ],
64
            'options' => [
65
                'use_hidden_element' => 0,
1070 geraldo 66
                'unchecked_value' => \LeadersLinked\Model\CompanyPerformanceEvaluationForm::STATUS_INACTIVE,
67
                'checked_value'=> \LeadersLinked\Model\CompanyPerformanceEvaluationForm::STATUS_ACTIVE,
977 geraldo 68
            ]
69
        ]);
70
 
71
    }
1064 geraldo 72
 
73
    /**
74
     *
75
     * @param AdapterInterface $adapter
76
     */
77
    private function getSelectOptions($adapter, $company_id)
78
    {
79
        $options = [];
80
 
1066 geraldo 81
        $mapper = JobDescriptionMapper::getInstance($adapter);
1064 geraldo 82
        $records = $mapper->fetchAllActivesByCompanyId($company_id);
83
 
84
 
85
        foreach($records as $record)
86
        {
87
            $options[$record->uuid] = $record->name;
88
        }
89
        return $options;
90
    }
977 geraldo 91
 
92
 
1063 geraldo 93
 
977 geraldo 94
}