Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
7292 eleazar 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\OrganizationalClimateFormMapper;
12
use LeadersLinked\Model\OrganizationalClimateForm;
13
 
14
class OrganizationalClimateFormForm extends Form
15
{
16
 
17
    /**
18
     *
19
     * @param AdapterInterface $adapter
20
     * @param int $company_id
21
     */
22
    public function __construct($adapter, $company_id)
23
    {
24
        parent::__construct();
25
        $this->setInputFilter(new OrganizationalClimateFormFilter($adapter));
26
 
27
        $this->add([
28
            'name' => 'name',
29
            'type' => \Laminas\Form\Element\Text::class,
30
             'attributes' => [
31
                'maxlength' 	=> 128,
32
                'id' 			=> 'name',
33
            ]
34
        ]);
35
 
36
        $this->add([
37
            'name' => 'description',
38
            'type' => \Laminas\Form\Element\Textarea::class,
39
             'attributes' => [
40
                'id' 			=> 'description',
41
             ],
42
        ]);
43
 
44
        $this->add([
45
            'name' => 'text',
46
            'type' => \Laminas\Form\Element\Textarea::class,
47
             'attributes' => [
48
                'id' 			=> 'text',
49
             ],
50
        ]);
51
 
52
        $this->add([
53
            'name' => 'status',
54
            'type' => \Laminas\Form\Element\Select::class,
55
            'options' => [
56
                'empty_option' => 'LABEL_STATUS',
57
                'value_options' => [
58
                    OrganizationalClimateForm::STATUS_ACTIVE => 'LABEL_ACTIVE',
59
                    OrganizationalClimateForm::STATUS_INACTIVE => 'LABEL_INACTIVE',
60
                ],
61
            ],
62
            'attributes' => [
63
                'id' => 'status',
64
            ]
65
        ]);
66
 
67
        $this->add([
68
            'name' => 'content',
69
            'type' => \Laminas\Form\Element\Textarea::class,
70
            'attributes' => [
71
                'id'    => 'content',
72
            ]
73
        ]);
74
 
75
    }
76
 
77
 
78
}