1 | <?php |
||
5 | class Checkbox extends Select |
||
6 | { |
||
7 | protected $type = 'checkbox'; |
||
8 | |||
9 | protected $max; |
||
10 | protected $min = 0; |
||
11 | protected $showCheckAll = false; |
||
12 | |||
13 | public function getMax() |
||
17 | |||
18 | public function setMax($value) |
||
26 | |||
27 | public function getMin() |
||
31 | |||
32 | public function setMin($value) |
||
40 | |||
41 | public function isShowCheckAll() |
||
45 | |||
46 | public function enableShowCheckAll() |
||
52 | |||
53 | public function getValue() |
||
61 | |||
62 | protected function getDefaultValue() |
||
66 | |||
67 | protected function prepareValue($value) |
||
75 | |||
76 | public function toArray() |
||
84 | } |
||
85 |