12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
- /**
- *
- * Field: switcher
- *
- * @since 1.0.0
- * @version 1.0.0
- *
- */
- if ( ! class_exists( 'CSF_Field_switcher' ) ) {
- class CSF_Field_switcher extends CSF_Fields {
- public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
- parent::__construct( $field, $value, $unique, $where, $parent );
- }
- public function render() {
- $active = ( ! empty( $this->value ) ) ? ' csf--active' : '';
- $text_on = ( ! empty( $this->field['text_on'] ) ) ? $this->field['text_on'] : esc_html__( 'On', 'sakurairo_csf' );
- $text_off = ( ! empty( $this->field['text_off'] ) ) ? $this->field['text_off'] : esc_html__( 'Off', 'sakurairo_csf' );
- $text_width = ( ! empty( $this->field['text_width'] ) ) ? ' style="width: '. esc_attr( $this->field['text_width'] ) .'px;"': '';
- echo $this->field_before();
- echo '<div class="csf--switcher'. esc_attr( $active ) .'"'. $text_width .'>';
- echo '<span class="csf--on">'. esc_attr( $text_on ) .'</span>';
- echo '<span class="csf--off">'. esc_attr( $text_off ) .'</span>';
- echo '<span class="csf--ball"></span>';
- echo '<input type="hidden" name="'. esc_attr( $this->field_name() ) .'" value="'. esc_attr( $this->value ) .'"'. $this->field_attributes() .' />';
- echo '</div>';
- echo ( ! empty( $this->field['label'] ) ) ? '<span class="csf--label">'. esc_attr( $this->field['label'] ) . '</span>' : '';
- echo $this->field_after();
- }
- }
- }
|