File manager - Edit - /home/theblueo/questionnaire/wp-content/themes/astra/inc/customizer/custom-controls/select/class-astra-control-select.php
Back
<?php /** * Customizer Control: select. * * Creates a select control. * * @package Astra * @author Astra * @copyright Copyright (c) 2020, Astra * @link https://wpastra.com/ * @since 1.0.0 */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Color control (alpha). */ class Astra_Control_Select extends WP_Customize_Control { /** * The control type. * * @access public * @var string */ public $type = 'ast-select'; /** * The control type. * * @access public * @var string */ public $suffix = ''; /** * Refresh the parameters passed to the JavaScript via JSON. * * @see WP_Customize_Control::to_json() */ public function to_json() { parent::to_json(); $this->json['default'] = $this->setting->default; if ( isset( $this->default ) ) { $this->json['default'] = $this->default; } $this->json['value'] = $this->value(); $this->json['label'] = esc_html( $this->label ); } /** * An Underscore (JS) template for this control's content (but not its container). * * Class variables for this control class are available in the `data` JS object; * export custom variables by overriding {@see WP_Customize_Control::to_json()}. * * @see WP_Customize_Control::print_template() * * @access protected */ protected function content_template() { ?> <# if ( data.label ) { #> <label> <span class="customize-control-title">{{{ data.label }}}</span> </label> <# } #> <div class="customize-control-content"> <select class="ast-select-input" data-name="{{data.name}}" data-value="{{data.value}}" > <# _.each( data.choices, function( label, key ){ #> <option <# if ( data.value == key ){ #> selected="selected" <# } #> value="{{ key }}">{{ label }}</option> <# } ); #> </select> </div> <?php } }
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings