| 1 | <?php |
||
| 5 | class Select extends Filter |
||
| 6 | { |
||
| 7 | protected $type = 'select'; |
||
| 8 | |||
| 9 | protected $options; |
||
| 10 | |||
| 11 | public function __construct($name, $title, $options = null) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return mixed |
||
| 20 | */ |
||
| 21 | public function getOptions() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param mixed $options |
||
| 28 | * |
||
| 29 | * @return Select |
||
| 30 | */ |
||
| 31 | public function setOptions($options) |
||
| 36 | |||
| 37 | public function toArray() |
||
| 43 | } |
||
| 44 |