Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 14831 Rev 14874
Línea 14... Línea 14...
14
use Laminas\Form\Element;
14
use Laminas\Form\Element;
Línea 15... Línea 15...
15
 
15
 
16
class CreateFeedForm extends Form
16
class CreateFeedForm extends Form
Línea 17... Línea 17...
17
{
17
{
18
 
18
 
19
    public function __construct($adapter) 
19
    public function __construct() 
20
    {
20
    {
Línea 21... Línea 21...
21
        parent::__construct();
21
        parent::__construct();
22
        $this->setInputFilter(new CreateFeedFilter($adapter));
-
 
23
       
-
 
24
 
-
 
25
        $this->add([
-
 
26
            'name' => 'priority',
-
 
27
            'type' => \Laminas\Form\Element\Checkbox::class,
-
 
28
            'attributes' => [
-
 
29
                'id' 			=> 'priority',
-
 
30
                'class'         => 'form-control',
-
 
31
            ],
-
 
32
            'options' => [
-
 
33
                'use_hidden_element' => 0,
-
 
34
                'unchecked_value' => \LeadersLinked\Model\Feed::PRIORITY_NORMAL,
-
 
35
                'checked_value'=> \LeadersLinked\Model\Feed::PRIORITY_URGENT,
-
 
36
            ]
-
 
37
        ]);
-
 
38
 
-
 
39
        $this->add([
-
 
40
            'name' => 'file_type',
-
 
41
            'type' => \Laminas\Form\Element\Hidden::class,
-
 
42
            'attributes' => [
-
 
43
                'id'    => 'file_type',
-
 
44
                'value_options' => [ 
-
 
45
                    Feed::TYPE_HPTG,
-
 
46
                    Feed::TYPE_MYT_ANSWER
-
 
47
                ]
-
 
48
            ]
-
 
49
        ]);
-
 
50
 
-
 
51
        $this->add([
-
 
52
            'name' => 'time',
-
 
53
            'type' => Element\Time::class,
-
 
54
            'options'=> [
-
 
55
                'format' => 'H:i',
-
 
56
            ]
-
 
57
        ]);
-
 
58
        $this->add([
-
 
59
            'name' => 'date',
-
 
60
            'type' => Element\Date::class,
-
 
61
            'attributes' => [
-
 
62
                'maxlength' 	=> 15,
-
 
63
                'id' 			=> 'date',
-
 
64
            ]
-
 
65
        ]);
-
 
66
        $this->add([
-
 
67
            'name' => 'link_name',
-
 
68
            'type' => \Laminas\Form\Element\Text::class,
-
 
69
            'attributes' => [
-
 
70
                'maxlength' 	=> 254,
-
 
71
                'id' 			=> 'link_name',
-
 
72
            ]
-
 
73
        ]);
-
 
74
        $this->add([
-
 
75
            'type' => Element\Select::class,
-
 
76
            'name' => 'link_type',
-
 
77
            'options' =>  [
-
 
78
                'empty_option' => 'LABEL_SELECT',
-
 
79
                'value_options' =>[
-
 
80
                    'skype' => 'Skype',
-
 
81
                    'zoom' => 'Zoom',
-
 
82
                    'meet'=>'Meet'
-
 
83
                ],
-
 
84
            ],
-
 
85
            'attributes'=> [
-
 
86
                'class' => 'Custom-select', 
-
 
87
                'id' => 'link_type',
-
 
88
                  ]
-
 
89
            ]);
-
 
90
 
-
 
91
            $this->add([
-
 
92
                'name' => 'link_media',
-
 
93
                'type' => Element\Select::class,
-
 
94
                'options' => [
-
 
95
                    'empty_option' => 'LABEL_LINK',
-
 
96
                    'value_options' => [
-
 
97
                        'cesa' => 'CESA',
-
 
98
                        'youtube' => 'YouTube',
-
 
99
                        'spotify'=> 'Spotify',
-
 
100
                        'deezer' => 'Deezer',
-
 
101
                        'apple' => 'Apple Podcast',
-
 
102
                    ],
-
 
103
                ],
-
 
104
                'attributes' => [
-
 
105
                    'class' => 'Custom-select', 
-
 
106
                    'id' => 'link_media',
-
 
107
                ]
-
 
108
            ]);
-
 
109
            
-
 
110
        $this->add([
-
 
111
                'name' => 'title',
-
 
112
                'type' => \Laminas\Form\Element\Text::class,
-
 
113
                'attributes' => [
-
 
114
                    'maxlength' 	=> 128,
-
 
115
                    'id' 			=> 'title',
-
 
116
                ]
22
        $this->setInputFilter(new CreateFeedFilter());
117
        ]);
23
       
118
 
24
 
119
        $this->add([
25
        $this->add([
120
            'name' => 'description',
26
            'name' => 'description',
Línea 130... Línea 36...
130
             'attributes' => [
36
             'attributes' => [
131
                'id' => 'file',
37
                'id' => 'file',
132
            ]
38
            ]
133
         ]);
39
         ]);
Línea 134... Línea -...
134
 
-
 
135
        $this->add([
-
 
136
            'name' => 'video',
-
 
137
            'type' => \Laminas\Form\Element\File::class,
-
 
138
            'attributes' => [
-
 
139
                'id' => 'video',
-
 
140
            ]
-
 
141
        ]);
-
 
142
 
-
 
143
        $this->add([
-
 
144
            'name' => 'doc',
-
 
145
            'type' => \Laminas\Form\Element\File::class,
-
 
146
            'attributes' => [
-
 
147
                'id' => 'doc',
-
 
148
            ]
-
 
149
        ]);
-
 
150
 
-
 
151
        $this->add([
-
 
152
            'name' => 'image',
-
 
153
            'type' => \Laminas\Form\Element\File::class,
-
 
154
            'attributes' => [
-
 
155
                'id' => 'image',
-
 
156
            ]
-
 
157
        ]);
-
 
158
 
-
 
159
        $this->add([
-
 
160
            'name' => 'category_id',
-
 
161
            'type' => \Laminas\Form\Element\Select::class,
-
 
162
            'attributes' => [
-
 
163
                'id' => 'category_id',
-
 
164
            ],
-
 
165
            'options' => [
-
 
166
                'value_options' => $this->getSelectFormOptions($adapter)
-
 
167
            ]
-
 
168
        ]);
-
 
169
 
-
 
170
        $this->add([
-
 
171
             'name' => 'category_content',
-
 
172
             'type' => \Laminas\Form\Element\Select::class,
-
 
173
             'attributes' => [
-
 
174
                 'id' => 'category_dc',
-
 
175
             ],
-
 
176
             'options' => [
-
 
177
                 'value_options' => $this->getDevelopmentFormOptions($adapter)
-
 
178
             ]
-
 
179
         ]);
-
 
180
        
-
 
181
    }
-
 
182
 
-
 
183
     /**
-
 
184
     *
-
 
185
     * @param AdapterInterface $adapter
-
 
186
     */
-
 
187
    private function getSelectFormOptions($adapter)
-
 
188
    {
-
 
Línea 189... Línea -...
189
        $options = [];
-
 
190
        
-
 
Línea 191... Línea -...
191
        $mapper = TopicMapper::getInstance($adapter);
-
 
192
        $records = $mapper->fetchAllMyTrainer(); 
-
 
193
        
-
 
194
        foreach($records as $record)
-
 
195
        {
-
 
196
            $options[$record->uuid] = $record->title;    
-
 
197
        }
-
 
198
        return $options;
-
 
199
    }
-
 
200
        
-
 
201
     /**
-
 
202
     *
-
 
203
     * @param AdapterInterface $adapter
-
 
204
     */
-
 
205
    private function getDevelopmentFormOptions($adapter)
-
 
206
    {
-
 
207
        $options = [];
-
 
208
        
-
 
209
        $mapper = TopicMapper::getInstance($adapter);
-
 
210
        $records = $mapper->fetchAllDevelopment(); 
-
 
211
        
-
 
212
        foreach($records as $record)
-
 
213
        {
-
 
214
            $options[$record->uuid] = $record->title;    
40
 
-
 
41
        
Línea 215... Línea 42...
215
        }
42