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
 
13
class CompanyProfileIndustryForm extends Form
14
{
15
    /**
16
     *
17
     * @param AdapterInterface $adapter
18
     */
19
    public function __construct($adapter)
20
    {
21
        parent::__construct();
14816 efrain 22
        $this->setInputFilter(new CompanyProfileIndustryFilter($adapter));
1 www 23
 
24
        $this->add([
25
             'name' => 'industry_id',
26
             'type' => \Laminas\Form\Element\Select::class,
27
             'options' => [
28
                 'value_options' => $this->optionsIndustry($adapter),
29
             ],
30
             'attributes' => [
31
                 'id' => 'industry_id',
32
             ]
33
         ]);
34
 
35
    }
36
 
37
 
38
    /**
39
     *
40
     * @param AdapterInterface $adapter
41
     * @return array
42
     */
43
    private function optionsIndustry($adapter)
44
    {
45
        $industryMapper = IndustryMapper::getInstance($adapter);
15086 efrain 46
        $industries  = $industryMapper->fetchAllActive();
1 www 47
 
48
        $options = [];
49
        foreach($industries as $industry)
50
        {
51
            $options[$industry->uuid] = $industry->name;
52
        }
53
 
54
        return $options;
55
    }
56
 
57
 
58
}