Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
11080 nelberth 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form;
6
 
7
use Laminas\Form\Form;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Log\LoggerInterface;
10
use LeadersLinked\Model\Feed;
11
use Laminas\Form\Element;
12
 
13
class HighPerformanceTeamsGroupsFeedForm extends Form
14
{
15
 
16
    public function __construct(){
17
        parent::__construct();
18
        $this->setInputFilter(new HighPerformanceTeamsGroupsFeedFilter());
19
 
20
 
11209 nelberth 21
 
22
 
11080 nelberth 23
        $this->add([
24
            'name' => 'priority',
25
            'type' => \Laminas\Form\Element\Checkbox::class,
26
            'attributes' => [
27
                'id' 			=> 'priority',
28
                'class'         => 'form-control',
29
            ],
30
            'options' => [
16766 efrain 31
                'use_hidden_element' => false,
11080 nelberth 32
                'unchecked_value' => \LeadersLinked\Model\Feed::PRIORITY_NORMAL,
33
                'checked_value'=> \LeadersLinked\Model\Feed::PRIORITY_URGENT,
34
            ]
35
        ]);
36
 
37
 
38
        $this->add([
39
            'name' => 'file_type',
40
            'type' => \Laminas\Form\Element\Hidden::class,
41
            'attributes' => [
42
                'id'    => 'file_type',
43
                'value' => Feed::TYPE_HPTG
44
            ]
45
        ]);
46
 
47
        $this->add([
48
            'name' => 'time',
49
            'type' => Element\Time::class,
50
            'options'=> [
51
                'format' => 'H:i',
52
            ]
53
        ]);
54
        $this->add([
55
            'name' => 'date',
56
            'type' => Element\Date::class,
57
            'attributes' => [
58
                'maxlength' 	=> 15,
59
                'id' 			=> 'date',
60
            ]
61
        ]);
62
        $this->add([
63
            'name' => 'link_name',
64
            'type' => \Laminas\Form\Element\Text::class,
65
            'attributes' => [
66
                'maxlength' 	=> 254,
67
                'id' 			=> 'link_name',
68
            ]
69
        ]);
70
        $this->add([
71
            'type' => Element\Select::class,
72
            'name' => 'link_type',
73
            'options' =>  [
74
                'empty_option' => 'LABEL_SELECT',
75
                'value_options' =>[
76
                    'skype' => 'Skype',
77
                    'zoom' => 'Zoom',
78
                    'meet'=>'Meet'
79
                ],
80
            ],
81
            'attributes'=> [
82
                'class' => 'Custom-select',
83
                'id' => 'link_type',
84
                  ]
85
            ]);
86
 
87
        $this->add([
88
                'name' => 'title',
89
                'type' => \Laminas\Form\Element\Text::class,
90
                'attributes' => [
91
                    'maxlength' 	=> 128,
92
                    'id' 			=> 'title',
93
                ]
94
        ]);
95
 
96
        $this->add([
97
            'name' => 'description',
98
            'type' => \Laminas\Form\Element\Textarea::class,
99
            'attributes' => [
100
                'id'    => 'description',
101
            ]
102
        ]);
103
 
104
        $this->add([
105
            'name' => 'file',
106
            'type' => \Laminas\Form\Element\File::class,
107
             'attributes' => [
108
                'id' => 'file',
109
            ]
110
         ]);
111
 
112
 
113
 
114
    }
115
 
116
}
117