| 1 | <?php |
||
| 12 | class Checkbox extends MultiSelect |
||
| 13 | { |
||
| 14 | protected $type = 'checkbox'; |
||
| 15 | |||
| 16 | protected $defaultValue = []; |
||
| 17 | |||
| 18 | protected $max; |
||
| 19 | protected $min = 0; |
||
| 20 | protected $showCheckAll = false; |
||
| 21 | |||
| 22 | public function getMax() |
||
| 26 | |||
| 27 | public function setMax($value) |
||
| 35 | |||
| 36 | public function getMin() |
||
| 40 | |||
| 41 | public function setMin($value) |
||
| 49 | |||
| 50 | public function isShowCheckAll() |
||
| 54 | |||
| 55 | public function enableShowCheckAll() |
||
| 61 | |||
| 62 | public function toArray() |
||
| 70 | } |
||
| 71 |