77 lines
2.2 KiB
PHP
77 lines
2.2 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Switch Field
|
||
|
|
*
|
||
|
|
* @package Redux Framework
|
||
|
|
* @author Dovy Paukstys & Kevin Provance (kprovance)
|
||
|
|
* @version 4.0.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
defined( 'ABSPATH' ) || exit;
|
||
|
|
|
||
|
|
if ( ! class_exists( 'Redux_Switch', false ) ) {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class Redux_Switch
|
||
|
|
*/
|
||
|
|
class Redux_Switch extends Redux_Field {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Field Render Function.
|
||
|
|
* Takes the vars and outputs the HTML for the field in the settings
|
||
|
|
*
|
||
|
|
* @since ReduxFramework 0.0.4
|
||
|
|
*/
|
||
|
|
public function render() {
|
||
|
|
$cb_enabled = '';
|
||
|
|
$cb_disabled = '';
|
||
|
|
|
||
|
|
// Get selected.
|
||
|
|
if ( 1 === (int) $this->value ) {
|
||
|
|
$cb_enabled = ' selected';
|
||
|
|
} else {
|
||
|
|
$cb_disabled = ' selected';
|
||
|
|
}
|
||
|
|
|
||
|
|
// Label ON.
|
||
|
|
$this->field['on'] = $this->field['on'] ?? esc_html__( 'On', 'redux-framework' );
|
||
|
|
|
||
|
|
// Label OFF.
|
||
|
|
$this->field['off'] = $this->field['off'] ?? esc_html__( 'Off', 'redux-framework' );
|
||
|
|
|
||
|
|
echo '<div class="switch-options">';
|
||
|
|
echo '<div class="cb-enable label' . esc_attr( $cb_enabled ) . '" data-id="' . esc_attr( $this->field['id'] ) . '"><span>' . esc_html( $this->field['on'] ) . '</span></div>';
|
||
|
|
echo '<div class="cb-disable label' . esc_attr( $cb_disabled ) . '" data-id="' . esc_attr( $this->field['id'] ) . '"><span>' . esc_html( $this->field['off'] ) . '</span></div>';
|
||
|
|
echo '<input type="hidden" class="checkbox checkbox-input ' . esc_attr( $this->field['class'] ) . '" id="' . esc_attr( $this->field['id'] ) . '" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '" value="' . esc_attr( $this->value ) . '" />';
|
||
|
|
echo '</div>';
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enqueue Function.
|
||
|
|
* If this field requires any scripts, or css define this function and register/enqueue the scripts/css
|
||
|
|
*
|
||
|
|
* @since ReduxFramework 0.0.4
|
||
|
|
*/
|
||
|
|
public function enqueue() {
|
||
|
|
wp_enqueue_script(
|
||
|
|
'redux-field-switch',
|
||
|
|
Redux_Core::$url . 'inc/fields/switch/redux-switch' . Redux_Functions::is_min() . '.js',
|
||
|
|
array( 'jquery', 'redux-js' ),
|
||
|
|
$this->timestamp,
|
||
|
|
true
|
||
|
|
);
|
||
|
|
|
||
|
|
if ( $this->parent->args['dev_mode'] ) {
|
||
|
|
wp_enqueue_style(
|
||
|
|
'redux-field-switch',
|
||
|
|
Redux_Core::$url . 'inc/fields/switch/redux-switch.css',
|
||
|
|
array(),
|
||
|
|
$this->timestamp
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
class_alias( 'Redux_Switch', 'ReduxFramework_Switch' );
|