Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4384 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\SurveyFormMapper;
4455 eleazar 12
use LeadersLinked\Model\SurveyForm;
4384 eleazar 13
 
14
class SurveyFormForm 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 SurveyFormFilter($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',
4455 eleazar 54
            'type' => \Laminas\Form\Element\Select::class,
55
            'options' => [
56
                'empty_option' => 'LABEL_STATUS',
57
                'value_options' => [
4457 eleazar 58
                    SurveyForm::STATUS_ACTIVE => 'LABEL_ACTIVE',
59
                    SurveyForm::STATUS_INACTIVE => 'LABEL_INACTIVE',
4455 eleazar 60
                ],
61
            ],
4384 eleazar 62
            'attributes' => [
4455 eleazar 63
                'id' => 'status',
4384 eleazar 64
            ]
65
        ]);
6345 eleazar 66
 
4384 eleazar 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
}