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
use LeadersLinked\Model\Feed;
13
use LeadersLinked\Model\Post;
14
 
15
class PostEditForm extends Form
16
{
17
 
18
    public function __construct()
19
    {
20
        parent::__construct();
21
        $this->setInputFilter(new PostEditFilter());
22
 
23
        $this->add([
24
            'name' => 'status',
25
            'type' => \Laminas\Form\Element\Checkbox::class,
26
            'attributes' => [
27
                'id' 			=> 'status',
28
            ],
29
            'options' => [
16766 efrain 30
                'use_hidden_element' => false,
1 www 31
                'unchecked_value' => \LeadersLinked\Model\CompanySize::STATUS_INACTIVE,
32
                'checked_value'=> \LeadersLinked\Model\CompanySize::STATUS_ACTIVE,
33
            ]
34
        ]);
35
 
36
        $this->add([
37
            'name' => 'title',
38
            'type' => \Laminas\Form\Element\Text::class,
39
            'attributes' => [
40
                'maxlength' 	=> 128,
41
                'id' 			=> 'title',
42
            ]
43
        ]);
44
 
45
 
46
 
47
        $this->add([
48
            'name' => 'description',
49
            'type' => \Laminas\Form\Element\Textarea::class,
50
            'attributes' => [
51
                'id'    => 'description',
52
            ]
53
        ]);
54
 
55
        $this->add([
56
            'name' => 'url',
57
            'type' => \Laminas\Form\Element\Url::class,
58
            'attributes' => [
59
                'maxlength' 	=> 250,
60
                'id' 			=> 'url',
61
            ]
62
        ]);
63
 
64
 
65
        $this->add([
66
            'name' => 'date',
67
            'type' => \Laminas\Form\Element\Text::class,
68
            'attributes' => [
69
                'maxlength' 	=> 10,
70
                'id' 			=> 'date',
71
            ]
72
        ]);
73
 
74
 
75
        $this->add([
76
            'name' => 'image',
77
            'type' => \Laminas\Form\Element\File::class,
78
            'attributes' => [
79
                'id' => 'image',
80
            ]
81
        ]);
82
 
83
        $this->add([
84
            'name' => 'file',
85
            'type' => \Laminas\Form\Element\File::class,
86
             'attributes' => [
87
                'id' => 'file',
88
            ]
89
         ]);
90
 
91
    }
92
}