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 LeadersLinked\Model\CompanyMicrolearningSlide;
9
 
10
 
11
class SlideAudioEditForm extends Form
12
{
13
 
14
    public function __construct()
15
    {
16
        parent::__construct();
17
        $this->setInputFilter(new SlideAudioEditFilter());
18
 
19
        $this->add([
20
            'name' => 'type',
21
            'type' => \Laminas\Form\Element\Hidden::class,
22
            'attributes' => [
23
                'id'    => 'type',
24
                'value' => CompanyMicrolearningSlide::TYPE_AUDIO
25
            ]
26
        ]);
27
 
28
        $this->add([
29
            'name' => 'name',
30
            'type' => \Laminas\Form\Element\Textarea::class,
31
            'attributes' => [
32
                'id'    => 'name',
33
            ]
34
        ]);
35
 
36
 
37
        $this->add([
38
            'name' => 'order',
39
            'type' => \Laminas\Form\Element\Text::class,
40
            'attributes' => [
41
                'id'    => 'order',
42
            ],
43
        ]);
44
 
45
        $this->add([
46
            'name' => 'file',
47
            'type' => \Laminas\Form\Element\File::class,
48
             'attributes' => [
49
                'id' => 'file',
50
            ]
51
         ]);
52
 
6661 nelberth 53
         $this->add([
1 www 54
            'name' => 'background',
6661 nelberth 55
            'type' => \Laminas\Form\Element\Hidden::class,
1 www 56
            'attributes' => [
57
                'id' => 'background',
58
            ]
59
        ]);
60
 
61
    }
62
}