File "SelectIconControl.php"
Full Path: /home/pumpbmko/public_html/themes/momota/lib/colibriwp/src/Customizer/Controls/SelectIconControl.php
File size: 510 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace ColibriWP\Theme\Customizer\Controls;
use ColibriWP\Theme\Core\Utils;
class SelectIconControl extends VueControl {
public $type = 'colibri-select-icon';
public static function sanitize( $value, $control_data, $default = '' ) {
return Utils::sanitizeSelectControl( $control_data, $value );
}
protected function printVueContent() {
?>
<select-with-icon
slot="control"
:value="value"
@change="setValue($event)"
:items="options"
></select-with-icon>
<?php
}
}