Checkbox.php
7 years ago
Input.php
7 years ago
MultiSelect.php
7 years ago
Radio.php
7 years ago
Select.php
7 years ago
MultiSelect.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\Form\Element; |
| 4 | |
| 5 | class MultiSelect extends Select { |
| 6 | |
| 7 | public function __construct( $name, array $options = array() ) { |
| 8 | parent::__construct( $name, $options ); |
| 9 | |
| 10 | $this->set_attribute( 'multiple', 'multiple' ); |
| 11 | } |
| 12 | |
| 13 | protected function selected( $value ) { |
| 14 | return in_array( $value, (array) $this->get_value(), true ); |
| 15 | } |
| 16 | |
| 17 | } |