Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
114 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form;
6
 
7
use Laminas\Form\Form;
8
 
9
 
10
class CompanySelfEvaluationFormForm extends Form
11
{
12
 
13
    public function __construct()
14
    {
15
        parent::__construct();
16
        $this->setInputFilter(new CompanySelfEvaluationFormFilter());
17
 
18
        $this->add([
19
            'name' => 'language',
20
            'type' => \Laminas\Form\Element\Select::class,
21
            'attributes' => [
22
                'id' => 'language',
23
            ],
24
            'options' => [
25
                'value_options' => [
26
                    \LeadersLinked\Model\CompanySelfEvaluationForm::LANGUAGE_SPANISH => 'LABEL_SPANISH',
115 efrain 27
                    \LeadersLinked\Model\CompanySelfEvaluationForm::LANGUAGE_ENGLISH => 'LABEL_ENGLISH',
114 efrain 28
                ]
29
            ]
30
        ]);
31
 
32
 
33
        $this->add([
34
            'name' => 'name',
35
            'type' => \Laminas\Form\Element\Text::class,
36
             'attributes' => [
37
                'maxlength' 	=> 128,
38
                'id' 			=> 'name',
39
            ]
40
        ]);
41
 
42
        $this->add([
43
            'name' => 'description',
44
            'type' => \Laminas\Form\Element\Textarea::class,
45
            'attributes' => [
46
                'id'    => 'description',
47
            ]
48
        ]);
49
 
50
        $this->add([
51
            'name' => 'text',
52
            'type' => \Laminas\Form\Element\Textarea::class,
53
            'attributes' => [
54
                'id'    => 'text',
55
            ]
56
        ]);
187 efrain 57
 
58
        $this->add([
59
            'name' => 'content',
60
            'type' => \Laminas\Form\Element\Textarea::class,
61
            'attributes' => [
62
                'id'    => 'content',
63
            ]
64
        ]);
114 efrain 65
 
66
        $this->add([
67
            'name' => 'status',
68
            'type' => \Laminas\Form\Element\Checkbox::class,
69
            'attributes' => [
70
                'id' 			=> 'status',
71
            ],
72
            'options' => [
73
                'use_hidden_element' => 0,
74
                'unchecked_value' => \LeadersLinked\Model\CompanySelfEvaluationForm::STATUS_INACTIVE,
75
                'checked_value'=> \LeadersLinked\Model\CompanySelfEvaluationForm::STATUS_ACTIVE,
76
            ]
77
        ]);
78
 
79
    }
80
 
81
 
82
}