Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
2356 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\PlanningObjectivesAndGoalsGoals;
11
use Laminas\Form\Element;
12
 
13
class PlanningObjectivesAndGoalsGoalsForm extends Form
14
{
15
 
16
    public function __construct(){
17
        parent::__construct();
18
        $this->setInputFilter(new PlanningObjectivesAndGoalsGoalsFilter());
19
 
20
        $this->add([
21
            'name' => 'title',
22
            'type' => \Laminas\Form\Element\Text::class,
23
            'attributes' => [
24
                'maxlength' 	=> 128,
25
                'id' 			=> 'title',
26
            ]
27
        ]);
28
 
29
 
30
        $this->add([
31
            'name' => 'description',
32
            'type' => \Laminas\Form\Element\Textarea::class,
33
            'attributes' => [
34
                'id'    => 'description',
35
            ]
36
        ]);
3130 nelberth 37
        $this->add([
38
            'name' => 'status',
39
            'type' => \Laminas\Form\Element\Checkbox::class,
40
            'attributes' => [
41
                'id' 			=> 'status',
42
            ],
43
            'options' => [
44
                'use_hidden_element' => 0,
45
                'unchecked_value' => \LeadersLinked\Model\PlanningObjectivesAndGoalsGoals::STATUS_INACTIVE,
46
                'checked_value'=> \LeadersLinked\Model\PlanningObjectivesAndGoalsGoals::STATUS_ACTIVE,
47
            ]
48
        ]);
2356 nelberth 49
 
50
    }
51
 
52
}