Your IP : 216.73.216.162


Current Path : /home/xbodynamge/namtation/wp-content/
Upload File :
Current File : /home/xbodynamge/namtation/wp-content/class-control-select.php.tar

xbodynamge/lebauwcentre/wp-content/themes/customify/inc/customizer/controls/class-control-select.php000064400000001200151140510620031214 0ustar00home<?php
class Customify_Customizer_Control_Select extends Customify_Customizer_Control_Base {
	static function field_template() {
		echo '<script type="text/html" id="tmpl-field-customify-select">';
		self::before_field();
		?>
		<?php echo self::field_header(); ?>
		<div class="customify-field-settings-inner">
			<select class="customify-input" data-name="{{ field.name }}">
				<# _.each( field.choices, function( label, key ){  #>
					<option <# if ( field.value == key ){ #> selected="selected" <# } #> value="{{ key }}">{{ label }}</option>
				<# } ); #>
			</select>
		</div>
		<?php
		self::after_field();
		echo '</script>';
	}
}