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 PostCreateForm extends Form
16
{
17
 
18
    public function __construct()
19
    {
20
        parent::__construct();
21
        $this->setInputFilter(new PostCreateFilter());
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
 
37
        $this->add([
38
            'name' => 'title',
39
            'type' => \Laminas\Form\Element\Text::class,
40
            'attributes' => [
41
                'maxlength' 	=> 128,
42
                'id' 			=> 'title',
43
            ]
44
        ]);
45
 
46
 
47
 
48
        $this->add([
49
            'name' => 'description',
50
            'type' => \Laminas\Form\Element\Textarea::class,
51
            'attributes' => [
52
                'id'    => 'description',
53
            ]
54
        ]);
55
 
56
        $this->add([
57
            'name' => 'url',
58
            'type' => \Laminas\Form\Element\Url::class,
59
            'attributes' => [
60
                'maxlength' 	=> 250,
61
                'id' 			=> 'url',
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
}