[ Root System Explorer ]
Location:
Root
/
home
/
svaxkys
/
www
/
Arcoetanche
/
wp-content
/
plugins
/
redux-framework
/
redux-core
/
inc
/
fields
/
switch
+ Folder
+ File
Upload
Editing: class-redux-switch.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 '<label class="cb-enable' . esc_attr( $cb_enabled ) . '" data-id="' . esc_attr( $this->field['id'] ) . '"><span>' . esc_html( $this->field['on'] ) . '</span></label>'; echo '<label class="cb-disable' . esc_attr( $cb_disabled ) . '" data-id="' . esc_attr( $this->field['id'] ) . '"><span>' . esc_html( $this->field['off'] ) . '</span></label>'; 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-js', 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-css', Redux_Core::$url . 'inc/fields/switch/redux-switch.css', array(), $this->timestamp ); } } } } class_alias( 'Redux_Switch', 'ReduxFramework_Switch' );
SAVE CHANGES
[ CANCEL ]
Name
Type
Actions
.. (Parent Directory)
📄 class-redux-switch.php
FILE
Ren
[EDIT]
DEL
📄 field_switch.php
FILE
Ren
[EDIT]
DEL
📄 index.php
FILE
Ren
[EDIT]
DEL
📄 redux-switch.css
FILE
Ren
[EDIT]
DEL
📄 redux-switch.css.map
FILE
Ren
[EDIT]
DEL
📄 redux-switch.js
FILE
Ren
[EDIT]
DEL
📄 redux-switch.min.js
FILE
Ren
[EDIT]
DEL
📄 redux-switch.scss
FILE
Ren
[EDIT]
DEL