Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 7273 Rev 7297
Línea 36... Línea 36...
36
            'type' => \Laminas\Form\Element\Textarea::class,
36
            'type' => \Laminas\Form\Element\Textarea::class,
37
            'attributes' => [
37
            'attributes' => [
38
                'id'    => 'description',
38
                'id'    => 'description',
39
            ]
39
            ]
40
        ]);
40
        ]);
41
 
41
/*
42
        $this->add([
42
        $this->add([
43
            'name' => 'members',
43
            'name' => 'members',
44
            'type' => \Laminas\Form\Element\Select::class,
44
            'type' => \Laminas\Form\Element\Select::class,
45
            'attributes' => [
45
            'attributes' => [
46
                'required'=> true,
46
                'required'=> true,
Línea 49... Línea 49...
49
            ],
49
            ],
50
            'options' => [
50
            'options' => [
51
                'disable_inarray_validator' => true,
51
                'disable_inarray_validator' => true,
52
                'value_options' => $this->getSelectOptions($adapter,$company_id)
52
                'value_options' => $this->getSelectOptions($adapter,$company_id)
53
            ]
53
            ]
54
        ]);
54
        ]);*/
55
        $this->add([
55
        $this->add([
56
            'name' => 'status',
56
            'name' => 'status',
57
            'type' => \Laminas\Form\Element\Checkbox::class,
57
            'type' => \Laminas\Form\Element\Checkbox::class,
58
            'attributes' => [
58
            'attributes' => [
59
                'id' 			=> 'status',
59
                'id' 			=> 'status',
Línea 64... Línea 64...
64
                'checked_value'=> \LeadersLinked\Model\HighPerformanceTeamsGroups::STATUS_ACTIVE,
64
                'checked_value'=> \LeadersLinked\Model\HighPerformanceTeamsGroups::STATUS_ACTIVE,
65
            ]
65
            ]
66
        ]);
66
        ]);
67
    }
67
    }
Línea 68... Línea 68...
68
 
68
 
69
    private function getSelectOptions($adapter,$company_id) 
69
  /*  private function getSelectOptions($adapter,$company_id) 
70
    {
70
    {
71
            $companyUserMapper = CompanyUserMapper::getInstance($adapter);
71
            $companyUserMapper = CompanyUserMapper::getInstance($adapter);
72
            $userMapper = UserMapper::getInstance($adapter);
72
            $userMapper = UserMapper::getInstance($adapter);
73
            $datosCompanyUser = $companyUserMapper->fetchAllByCompanyId($company_id);
73
            $datosCompanyUser = $companyUserMapper->fetchAllByCompanyId($company_id);
Línea 77... Línea 77...
77
                $datosUser = $userMapper->fetchOne($record->user_id);
77
                $datosUser = $userMapper->fetchOne($record->user_id);
78
                $users[$datosUser->uuid] = $datosUser->uuid;
78
                $users[$datosUser->uuid] = $datosUser->uuid;
79
            }
79
            }
Línea 80... Línea 80...
80
 
80
 
81
        return $users;
81
        return $users;
Línea 82... Línea 82...
82
    }
82
    }*/
83
 
83