PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
kadence-woocommerce-email-designer
/
includes
<?php // Exit if accessed directly if ( ! defined('ABSPATH') ) { exit; } /** * This is a customized version of https://github.com/soderlind/class-customizer-range-value-control */ if ( class_exists( 'WP_Customize_Control' ) && ! class_exists( 'WP_Customize_Rangevalue_Control' ) ) { class WP_Customize_Rangevalue_Control extends WP_Customize_Control { public $type = 'rangevalue'; /** * Enqueue scripts/styles. * * @since 3.4.0 */ public function enqueue() { wp_enqueue_script( 'customizer-range-value-control', KT_WOOMAIL_URL . 'assets/js/customizer-range-value-control.js', array( 'jquery' ), KT_WOOMAIL_VERSION, true ); wp_enqueue_style( 'customizer-range-value-control', KT_WOOMAIL_URL . 'assets/css/customizer-range-value-control.css', array(), KT_WOOMAIL_VERSION ); } /** * Render the control's content. * * @author soderlind * @version 1.2.0 */ public function render_content() { ?> <label> <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> <div class="range-slider" style="width:100%; display:flex;flex-direction: row;justify-content: flex-start;"> <span style="width:100%; flex: 1 0 0; vertical-align: middle;"><input class="range-slider__range" type="range" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->input_attrs(); $this->link(); ?>> <span class="range-slider__value">0</span></span> </div> <?php if ( ! empty( $this->description ) ) : ?> <span class="description customize-control-description"><?php echo $this->description; ?></span> <?php endif; ?> </label> <?php } } }
[+]
..
[-] class-customizer-repeater-control.php
[edit]
[-] class-kadence-woomail-settings.php
[edit]
[-] class-kadence-woomail-customizer.php
[edit]
[-] class-kadence-woomail-woo.php
[edit]
[-] class-customizer-range-value-control.php
[edit]
[-] class-customizer-kwdinfoblock-control.php
[edit]
[-] class-customizer-kwdsendemail-control.php
[edit]
[-] class-customizer-kwdtemplateload-control.php
[edit]
[-] class-kadence-woomail-preview.php
[edit]
[-] class-kadence-woomail-import-option.php
[edit]
[-] class-customizer-toggle-control.php
[edit]
[-] class-customizer-kwdimportexport-control.php
[edit]
[-] class-kadence-woomail-import-export.php
[edit]