Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15831 | Rev 16948 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15459 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form\Network;
6
 
7
use Laminas\Form\Form;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Log\LoggerInterface;
10
use LeadersLinked\Mapper\ThemeMapper;
11
use LeadersLinked\Model\Network;
12
 
13
class NetworkEditForm extends Form
14
{
15
 
16
    /**
17
     *
18
     * @param AdapterInterface $adapter
19
     */
20
    public function __construct($adapter)
21
    {
22
 
23
        parent::__construct();
24
        $this->setInputFilter(new NetworkEditFilter($adapter));
25
 
26
 
27
        $this->add([
28
            'name' => 'name',
29
            'type' => \Laminas\Form\Element\Text::class,
30
             'attributes' => [
31
                'maxlength' 	=> 128,
32
                'id' 			=> 'name',
33
            ]
34
         ]);
35
 
36
        $this->add([
37
            'name' => 'main_hostname',
38
            'type' => \Laminas\Form\Element\Text::class,
39
            'attributes' => [
40
                'maxlength' 	=> 250,
41
                'id' 			=> 'main_hostname',
42
            ]
43
        ]);
44
 
45
        $this->add([
46
            'name' => 'alternative_hostname',
47
            'type' => \Laminas\Form\Element\Text::class,
48
            'attributes' => [
49
                'maxlength' 	=> 250,
50
                'id' 			=> 'alternative_hostname',
51
            ]
52
        ]);
53
 
54
 
55
 
56
        $this->add([
57
            'name' => 'admin_hostname',
58
            'type' => \Laminas\Form\Element\Text::class,
59
            'attributes' => [
60
                'maxlength' 	=> 250,
61
                'id' 			=> 'admin_hostname',
62
            ]
63
        ]);
64
 
65
        $this->add([
66
            'name' => 'status',
67
            'type' => \Laminas\Form\Element\Checkbox::class,
68
            'attributes' => [
69
                'id' 			=> 'status',
70
            ],
71
            'options' => [
16766 efrain 72
                'use_hidden_element' => false,
15459 efrain 73
                'unchecked_value' => \LeadersLinked\Model\Network::STATUS_INACTIVE,
74
                'checked_value'=> \LeadersLinked\Model\Network::STATUS_ACTIVE,
75
            ]
76
        ]);
77
 
15831 efrain 78
 
15459 efrain 79
        $this->add([
15831 efrain 80
            'name' => 'moodle_name',
81
            'type' => \Laminas\Form\Element\Text::class,
82
            'attributes' => [
83
                'maxlength' 	=> 20,
84
                'id' 			=> 'moodle_name',
85
            ]
86
        ]);
87
 
88
        $this->add([
15459 efrain 89
            'name' => 'moodle_url',
90
            'type' => \Laminas\Form\Element\Text::class,
91
            'attributes' => [
92
                'maxlength' 	=> 250,
93
                'id' 			=> 'moodle_url',
94
            ]
95
        ]);
96
 
15831 efrain 97
        $this->add([
98
            'name' => 'microlearning_appstore',
99
            'type' => \Laminas\Form\Element\Text::class,
100
            'attributes' => [
101
                'maxlength' 	=> 250,
102
                'id' 			=> 'microlearning_appstore',
103
            ]
104
        ]);
15459 efrain 105
 
106
        $this->add([
15831 efrain 107
            'name' => 'microlearning_playstore',
108
            'type' => \Laminas\Form\Element\Text::class,
109
            'attributes' => [
110
                'maxlength' 	=> 250,
111
                'id' 			=> 'mmicrolearning_playstore',
112
            ]
113
        ]);
114
 
115
 
116
        $this->add([
15459 efrain 117
            'name' => 'relationship_user_mode',
118
            'type' => \Laminas\Form\Element\Select::class,
119
            'attributes' => [
120
                'id' => 'relationship_user_mode',
121
            ],
122
            'options' => [
123
                'value_options' => [
124
                    Network::RELATIONSHIP_USER_MODE_USER_2_USER => 'LABEL_RELATIONSHIP_USER_MODE_USER_2_USER',
125
                    Network::RELATIONSHIP_USER_MODE_ALL_2_ALL => 'LABEL_RELATIONSHIP_USER_MODE_ALL_2_ALL',
126
                ]
127
            ]
128
        ]);
129
 
130
 
131
        $this->add([
132
            'name' => 'theme_id',
133
            'type' => \Laminas\Form\Element\Select::class,
134
            'attributes' => [
135
                'id' => 'theme_id',
136
            ],
137
            'options' => [
138
                'disable_inarray_validator' => true,
139
                'value_options' => $this->optionsTheme($adapter)
140
            ]
141
        ]);
142
 
143
 
144
    }
145
 
146
    /**
147
     *
148
     * @param AdapterInterface $adapter
149
     */
150
    private function optionsTheme($adapter)
151
    {
152
        $options = [];
153
 
154
        $mapper = ThemeMapper::getInstance($adapter);
155
        $records = $mapper->fetchAll();
156
 
157
        foreach($records as $record)
158
        {
159
            $options[$record->uuid] = $record->name;
160
        }
161
        return $options;
162
    }
163
 
164
 
165
 
166
}