Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
13722 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\Mapper\CompanySizeMapper;
11
use LeadersLinked\Mapper\IndustryMapper;
12
use LeadersLinked\Model\Feed;
13724 nelberth 13
use Laminas\Form\Element;
13722 nelberth 14
 
15
class CommunicationInMailSendAllForm extends Form
16
{
17
 
18
    public function __construct()
19
    {
20
        parent::__construct();
21
        $this->setInputFilter(new CommunicationInMailSendAllFilter());
22
 
23
 
24
        $this->add([
25
            'name' => 'message',
26
            'type' => \Laminas\Form\Element\Textarea::class,
27
            'attributes' => [
28
                'id'    => 'message',
29
            ]
30
        ]);
31
 
32
        $this->add([
33
            'type' => Element\Select::class,
14030 nelberth 34
            'name' => 'type_send_filter',
13722 nelberth 35
            'options' =>  [
36
                'empty_option' => 'LABEL_SELECT',
37
                'value_options' =>[
38
                    'company_all' => 'Todos en la compania',
13753 nelberth 39
                    'studens_all' => 'Todos los estudiantes',
13723 nelberth 40
                    'nu' => 'otros'
13722 nelberth 41
                ],
42
            ],
43
            'attributes'=> [
44
                'required'=> true,
45
                'class' => 'Custom-select',
14031 nelberth 46
                'id' => 'type_send-filter',
13722 nelberth 47
            ]
48
        ]);
49
 
50
        $this->add([
14030 nelberth 51
            'type' => Element\Radio::class,
52
            'name' => 'type_send',
53
            'options' =>  [
54
                'value_options' =>[
14038 nelberth 55
                    'chat' => 'chat',
56
                    'inmail' => 'inmail',
14030 nelberth 57
                ],
58
            ],
59
            'attributes'=> [
60
                'required'=> true,
61
                'id' => 'type_send',
62
            ]
63
        ]);
14060 nelberth 64
        $this->add([
65
            'type' => Element\Radio::class,
66
            'name' => 'type_message',
67
            'options' =>  [
68
                'value_options' =>[
14090 nelberth 69
                    'archive' => 'Abjuntar archivos',
14060 nelberth 70
                    'text' => 'Texto',
71
                ],
72
            ],
73
            'attributes'=> [
14107 nelberth 74
                'required'=> false,
14060 nelberth 75
                'id' => 'type_message',
76
            ]
77
        ]);
14030 nelberth 78
 
79
        $this->add([
13722 nelberth 80
            'name' => 'file',
81
            'type' => \Laminas\Form\Element\File::class,
82
             'attributes' => [
14125 nelberth 83
                'required'=> true,
13722 nelberth 84
                'id' => 'file',
85
            ]
14125 nelberth 86
        ]);
13722 nelberth 87
        $this->add([
88
            'name' => 'fileBase64Name',
89
            'type' => \Laminas\Form\Element\Hidden::class,
90
            'attributes' => [
91
                'id' => 'fileBase64Name',
92
            ]
93
        ]);
94
 
95
        $this->add([
96
            'name' => 'fileBase64Content',
97
            'type' => \Laminas\Form\Element\Hidden::class,
98
            'attributes' => [
99
                'id' => 'fileBase64Content',
100
            ]
101
        ]);
102
 
103
    }
104
}