Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
post-date
/
wp-content
/
plugins
/
kirki
/
kirki-packages
/
control-checkbox
/
src
/
Control
:
Checkbox_Switch.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Customizer Control: switch. * * @package kirki-framework/checkbox * @copyright Copyright (c) 2023, Themeum * @license https://opensource.org/licenses/MIT * @since 1.0 */ namespace Kirki\Control; use Kirki\Control\Base; use Kirki\URL; // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Switch control (modified checkbox). * * @since 1.0 */ class Checkbox_Switch extends Base { /** * The control type. * * @access public * @since 1.0 * @var string */ public $type = 'kirki-switch'; /** * The control version. * * @static * @access public * @since 1.0 * @var string */ public static $control_ver = '1.0.3'; /** * Enqueue control related scripts/styles. * * @access public * @since 1.0 * @return void */ public function enqueue() { parent::enqueue(); // Enqueue the script. wp_enqueue_script( 'kirki-control-checkbox', URL::get_from_path( dirname( dirname( __DIR__ ) ) . '/dist/control.js' ), [ 'jquery', 'customize-base', 'kirki-control-base' ], self::$control_ver, false ); // Enqueue the style. wp_enqueue_style( 'kirki-control-checkbox-style', URL::get_from_path( dirname( dirname( __DIR__ ) ) . '/dist/control.css' ), [], self::$control_ver ); } /** * Refresh the parameters passed to the JavaScript via JSON. * * @since 3.4.0 */ public function to_json() { // Get the basics from the parent class. parent::to_json(); $this->json['checkboxType'] = str_ireplace( 'kirki-', '', $this->type ); $this->json['defaultChoices'] = [ 'on' => __( 'On', 'kirki' ), 'off' => __( 'Off', 'kirki' ), ]; } /** * 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 * @since 1.0 * @return void */ protected function content_template() { ?> <div class="kirki-{{ data.checkboxType }}-control kirki-{{ data.checkboxType }}"> <# if ( data.label || data.description ) { #> <div class="kirki-control-label"> <# if ( data.label ) { #> <label class="customize-control-title" for="kirki_{{ data.checkboxType }}_{{ data.id }}"> {{{ data.label }}} </label> <# } #> <# if ( data.description ) { #> <span class="description customize-control-description">{{{ data.description }}}</span> <# } #> </div> <# } #> <div class="kirki-control-form"> <input class="screen-reader-text kirki-toggle-switch-input" {{{ data.inputAttrs }}} name="kirki_{{ data.checkboxType }}_{{ data.id }}" id="kirki_{{ data.checkboxType }}_{{ data.id }}" type="checkbox" value="{{ data.value }}" {{{ data.link }}}<# if ( '1' == data.value ) { #> checked<# } #> /> <label class="kirki-toggle-switch-label" for="kirki_{{ data.checkboxType }}_{{ data.id }}"> <# if ('switch' === data.checkboxType) { #> <span class="toggle-on"> <# data.choices.on = data.choices.on || data.defaultChoices.on #> {{ data.choices.on }} </span> <span class="toggle-off"> <# data.choices.off = data.choices.off || data.defaultChoices.off #> {{ data.choices.off }} </span> <# } #> </label> </div> </div> <?php } }