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 Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Log\LoggerInterface;
10
use LeadersLinked\Mapper\CompanySizeMapper;
11
use LeadersLinked\Mapper\IndustryMapper;
12
 
13
class PushTemplateForm extends Form
14
{
15
 
16
 
17
    public function __construct()
18
    {
19
        parent::__construct();
20
        $this->setInputFilter(new PushTemplateFilter());
21
 
22
        $this->add([
23
            'name' => 'id',
24
            'type' => \Laminas\Form\Element\Text::class,
25
            'attributes' => [
26
                'maxlength' 	=> 64,
27
                'id' 			=> 'id',
28
            ]
29
        ]);
30
 
31
        $this->add([
32
            'name' => 'title',
33
            'type' => \Laminas\Form\Element\Text::class,
34
             'attributes' => [
35
                'maxlength' 	=> 128,
36
                'id' 			=> 'title',
37
            ]
38
        ]);
39
 
40
        $this->add([
41
            'name' => 'body',
42
            'type' => \Laminas\Form\Element\Textarea::class,
43
            'attributes' => [
44
                'id'    => 'body',
45
            ]
46
        ]);
47
 
48
        $this->add([
49
            'name' => 'status',
50
            'type' => \Laminas\Form\Element\Checkbox::class,
51
            'attributes' => [
52
                'id' 			=> 'status',
53
            ],
54
            'options' => [
16766 efrain 55
                'use_hidden_element' => false,
1 www 56
                'unchecked_value' => \LeadersLinked\Model\PushTemplate::STATUS_INACTIVE,
57
                'checked_value'=> \LeadersLinked\Model\PushTemplate::STATUS_ACTIVE,
58
            ]
59
        ]);
60
    }
61
}