%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Form/Element/ |
Current File : //var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Form/Element/MultiSelect.php |
<?php namespace AC\Form\Element; class MultiSelect extends Select { public function __construct( $name, array $options = [] ) { parent::__construct( $name, $options ); $this->set_attribute( 'multiple', 'multiple' ); } protected function selected( $value ) { return in_array( $value, (array) $this->get_value(), true ); } }