Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5287 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\SurveyTestMapper;
12
use LeadersLinked\Mapper\SurveyMapper;
13
use LeadersLinked\Model\SurveyTest;
14
 
15
class SurveyTestForm extends Form
16
{
17
 
18
    /**
19
     *
20
     * @param AdapterInterface $adapter
21
     * @param int $company_id
22
     */
23
    public function __construct($adapter, $company_id)
24
    {
25
        parent::__construct();
5878 eleazar 26
        $this->setInputFilter(new SurveyTestFilter($adapter, $company_id));
5452 eleazar 27
 
28
        $this->add([
29
           'name' => 'first_name',
30
           'type' => \Laminas\Form\Element\Text::class,
31
            'attributes' => [
32
               'maxlength' 	=> 128,
33
               'id' 			=> 'first_name',
34
           ]
35
        ]);
36
 
37
        $this->add([
38
           'name' => 'last_name',
39
           'type' => \Laminas\Form\Element\Text::class,
40
            'attributes' => [
41
               'maxlength' 	=> 128,
42
               'id' 			=> 'last_name',
43
           ]
44
        ]);
45
 
46
        $this->add([
47
           'name' => 'email',
48
           'type' => \Laminas\Form\Element\Text::class,
49
            'attributes' => [
50
               'maxlength' 	=> 128,
51
               'id' 			=> 'email',
52
           ]
53
        ]);
5287 eleazar 54
 
55
        $this->add([
56
            'name' => 'survey_id',
57
            'type' => \Laminas\Form\Element\Select::class,
58
             'attributes' => [
59
                'id' 			=> 'survey_id',
60
             ],
61
            'options' => [
62
                'value_options' => $this->getSurveySelectOptions($adapter, $company_id)
63
            ]
64
        ]);
65
 
66
        $this->add([
67
            'name' => 'content',
68
            'type' => \Laminas\Form\Element\Textarea::class,
69
            'attributes' => [
70
                'id'    => 'content',
71
            ]
72
        ]);
73
 
74
    }
75
 
76
    /**
77
     *
78
     * @param AdapterInterface $adapter
79
     */
80
    private function getSurveySelectOptions($adapter, $company_id)
81
    {
82
        $options = [];
83
 
84
        $mapper = SurveyMapper::getInstance($adapter);
85
        $records = $mapper->fetchAllByCompanyId($company_id);
86
 
87
 
88
        foreach($records as $record)
89
        {
90
            $options[$record->uuid] = $record->name;
91
        }
92
        return $options;
93
    }
94
 
95
}