Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 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\IndustryMapper;
12
use LeadersLinked\Mapper\CompetencyTypeMapper;
13
use LeadersLinked\Mapper\CompanyMicrolearningTopicMapper;
14
use LeadersLinked\Mapper\CompanyMicrolearningCapsuleMapper;
15
 
16
class SlideForm extends Form
17
{
18
 
19
    /**
20
     *
21
     * @param AdapterInterface $adapter
22
     * @param int $company_id
23
     * @param int $topic_id
24
     */
25
    public function __construct($adapter, $company_id, $topic_id)
26
    {
27
        parent::__construct();
28
        $this->setInputFilter(new SlideFilter($adapter));
29
 
30
        $this->add([
31
            'name' => 'topic_uuid',
32
            'type' => \Laminas\Form\Element\Select::class,
33
            'attributes' => [
34
                'id' => 'topic_uuid',
35
            ],
36
            'options' => [
37
                'value_options' => $this->getSelectTopicOptions($adapter, $company_id)
38
            ]
39
        ]);
40
 
41
 
42
 
43
        $this->add([
44
            'name' => 'capsule_uuid',
45
            'type' => \Laminas\Form\Element\Select::class,
46
            'attributes' => [
47
                'id' => 'capsule_uuid',
48
            ],
49
            'options' => [
50
                'value_options' => $this->getSelectCapsuleOptions($adapter, $company_id, $topic_id)
51
            ]
52
        ]);
53
    }
54
 
55
    /**
56
     *
57
     * @param AdapterInterface $adapter
58
     */
59
    private function getSelectTopicOptions($adapter, $company_id)
60
    {
61
        $options = [];
62
 
63
        $mapper = CompanyMicrolearningTopicMapper::getInstance($adapter);
64
        $records = $mapper->fetchAllByCompanyId($company_id);
65
 
66
        foreach($records as $record)
67
        {
68
            $options[$record->uuid] = $record->name;
69
        }
70
        return $options;
71
    }
72
 
73
    /**
74
     *
75
     * @param AdapterInterface $adapter
76
     */
77
    private function getSelectCapsuleOptions($adapter, $company_id, $topic_id)
78
    {
79
        $options = [];
80
 
81
        $mapper = CompanyMicrolearningCapsuleMapper::getInstance($adapter);
82
        $records = $mapper->fetchAllByCompanyIdAndTopicId($company_id, $topic_id);
83
 
84
        foreach($records as $record)
85
        {
86
            $options[$record->uuid] = $record->name;
87
        }
88
        return $options;
89
    }
90
}