Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16250 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16248 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form\KnowledgeArea;
6
 
7
use Laminas\Form\Form;
8
 
9
 
10
class KnowledgeAreaCategoryForm extends Form
11
{
12
 
13
    /**
14
     *
15
     * @param int $allowPrivacyPublic
16
     */
17
    public function __construct($allowPrivacyPublic) {
18
        parent::__construct();
19
        $this->setInputFilter(new KnowledgeAreaCategoryFilter());
20
 
21
         $this->add([
22
            'name' => 'name',
23
            'type' => \Laminas\Form\Element\Text::class,
24
            'attributes' => [
25
                'maxlength' 	=> 128,
26
                'id' 			=> 'name',
27
            ]
28
        ]);
29
 
30
       $this->add([
31
            'name' => 'description',
32
            'type' => \Laminas\Form\Element\Textarea::class,
33
            'attributes' => [
34
                'id'    => 'description',
35
            ]
36
        ]);
37
 
38
        $this->add([
39
            'name' => 'status',
40
            'type' => \Laminas\Form\Element\Checkbox::class,
41
            'attributes' => [
42
                'id' 			=> 'status',
43
            ],
44
            'options' => [
45
                'use_hidden_element' => 0,
46
                'unchecked_value' => \LeadersLinked\Model\MyCoachCategory::STATUS_INACTIVE,
47
                'checked_value'=> \LeadersLinked\Model\MyCoachCategory::STATUS_ACTIVE
48
            ]
49
        ]);
50
 
51
        $options = [];
52
        if($allowPrivacyPublic) {
53
            $options = [
54
                \LeadersLinked\Model\MyCoachCategory::PRIVATY_PUBLIC => 'LABEL_PUBLIC',
55
                \LeadersLinked\Model\MyCoachCategory::PRIVACY_COMPANY => 'LABEL_COMPANY',
56
            ];
57
        } else {
58
            $options = [
59
                \LeadersLinked\Model\MyCoachCategory::PRIVACY_COMPANY => 'LABEL_COMPANY',
60
            ];
61
        }
62
 
63
 
64
        $this->add([
65
            'name' => 'privacy',
66
            'type' => \Laminas\Form\Element\Select::class,
67
            'attributes' => [
68
                'id' =>  'privacy',
69
            ],
70
            'options' => [
71
                //'disable_inarray_validator' => true,
72
                'value_options' =>  $options
73
            ]
74
        ]);
75
 
76
 
77
 
78
    }
79
 
80
 
81
}
82