Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /proc/self/cwd/wp-content/themes/colibri-wp/inc/src/Customizer/Controls/ |
Current File : //proc/self/cwd/wp-content/themes/colibri-wp/inc/src/Customizer/Controls/InputControl.php |
<?php namespace ColibriWP\Theme\Customizer\Controls; class InputControl extends VueControl { public $type = "colibri-input"; protected $input_type = "text"; public static function sanitize( $value, $control_data, $default = '' ) { if ( isset($control_data['input_type']) && $control_data['input_type'] === 'textarea' ) { return sanitize_textarea_field( $value ); } return sanitize_text_field( $value ); } public function json() { $json = parent::json(); $json['input_type'] = $this->input_type; return $json; } protected function printVueContent() { ?> <el-input @change="setValue" :type="input_type" placeholder="" v-model="value" clearable> </el-input> <?php } }
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare