File "Range_Slider.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Tribe/Customizer/Controls/Range_Slider.php
File size: 2.49 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Models a Customizer range slider.
*
* @since 4.12.13
*
* @package Tribe\Customizer\Controls
*/
namespace Tribe\Customizer\Controls;
use Tribe\Customizer\Control;
/**
* Class Range_Slider
*
* @since 4.12.13
*
* @package Tribe\Customizer\Controls
*/
class Range_Slider extends Control {
/**
* Control's Type.
*
* @since 4.12.13
*
* @var string
*/
public $type = 'range-slider';
/**
* Anyone able to set theme options will be able to see the slider.
*
* @since 4.12.13
*
* @var string
*/
public $capability = 'edit_theme_options';
/**
* Render the control's content
*
* @since 4.12.13
*/
public function render_content() {
$input_id = '_customize-input-' . $this->id;
$description_id = '_customize-description-' . $this->id;
$describedby_attr = ( ! empty( $this->description ) ) ? ' aria-describedby="' . esc_attr( $description_id ) . '" ' : '';
?>
<?php if ( ! empty( $this->label ) ) : ?>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<?php endif; ?>
<?php if ( ! empty( $this->description ) ) : ?>
<span id="<?php echo esc_attr( $description_id ); ?>" class="description customize-control-description">
<?php echo wp_kses_post( $this->description ); ?>
</span>
<?php endif; ?>
<span class="tribe-common-form-control-slider">
<label
class="tec-range-slider-label tribe-common-a11y-visual-hide"
for="<?php echo esc_attr( $input_id . '-range-slider' ); ?>"
>
<?php echo wp_kses_post( $this->label ); ?>
</label>
<input
id="<?php echo esc_attr( $input_id . '-range-slider' ); ?>"
type="range"
class="tec-range-slider"
<?php echo $describedby_attr; ?>
name="<?php echo esc_attr( '_customize-range-slider-' . $this->id ); ?>"
<?php $this->input_attrs(); ?>
<?php $this->link(); ?>
<?php if ( ! empty( $this->choices ) ) : ?>
list="<?php echo esc_attr( $input_id . '-range-slider-datalist' ); ?>"
<?php endif; ?>
/>
<?php if ( ! empty( $this->choices ) ) : ?>
<div
class="tec-range-slider-datalist"
id="<?php echo esc_attr( $input_id . '-range-slider-datalist' ); ?>"
>
<?php foreach ( $this->choices as $label => $value ) : ?>
<div
class="tec-range-slider-option"
value="<?php echo esc_attr( $value ); ?>"
label="<?php echo esc_attr( $label ); ?>"
>
<?php echo esc_html( $label ); ?></div>
<?php endforeach;?>
</div>
<?php endif; ?>
</span>
<?php
}
}