Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15451 | Rev 16325 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

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