Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 15355
Línea 13... Línea 13...
13
class PushMicrolearningNotificationForm extends Form
13
class PushMicrolearningNotificationForm extends Form
14
{
14
{
Línea 15... Línea 15...
15
 
15
 
16
    /**
16
    /**
-
 
17
     * 
17
     * 
18
     * 
-
 
19
     * @param AdapterInterface $adapter
18
     * @param AdapterInterface $adapter
20
     * @param int $company_id
19
     */
21
     */
20
    public function __construct($adapter) 
22
    public function __construct($adapter, $company_id) 
21
    {
23
    {
22
        parent::__construct();
24
        parent::__construct();
Línea 29... Línea 31...
29
            'type' => \Laminas\Form\Element\Select::class,
31
            'type' => \Laminas\Form\Element\Select::class,
30
            'attributes' => [
32
            'attributes' => [
31
                'id' => 'push_template_id',
33
                'id' => 'push_template_id',
32
            ],
34
            ],
33
            'options' => [
35
            'options' => [
34
                'value_options' => $this->getSelectOptions($adapter)
36
                'value_options' => $this->getSelectOptions($adapter, $company_id)
35
            ]
37
            ]
36
        ]);
38
        ]);
Línea 37... Línea 39...
37
        
39
        
Línea 38... Línea 40...
38
    }
40
    }
39
    
41
    
40
    /**
42
    /**
41
     *
43
     *
42
     * @param AdapterInterface $adapter
44
     * @param AdapterInterface $adapter
43
     */
45
     */
44
    private function getSelectOptions($adapter)
46
    private function getSelectOptions($adapter, $company_id)
Línea 45... Línea 47...
45
    {
47
    {
-
 
48
        $options = [];
-
 
49
        
-
 
50
        $mapper = PushTemplateMapper::getInstance($adapter);
46
        $options = [];
51
        $records = $mapper->fetchAllActiveByTypeAndCompanyId(PushTemplate::TYPE_MICRO_LEARNING, $company_id);
-
 
52
        
Línea 47... Línea 53...
47
        
53
        if(!$records) {
48
        $mapper = PushTemplateMapper::getInstance($adapter);
54
            $records = $mapper->fetchAllActiveByTypeDefault(PushTemplate::TYPE_MICRO_LEARNING);
49
        $records = $mapper->fetchAllActiveByType(PushTemplate::TYPE_MICRO_LEARNING);
55
        }
50
        
56