'cx-ui-swither-id', 'name' => 'cx-ui-swither-name', 'value' => true, 'toggle' => array( 'true_toggle' => 'On', 'false_toggle' => 'Off', ), 'label' => '', 'class' => '', ); /** * Render html UI_Switcher. * * @since 1.0.0 */ public function render() { $html = ''; $class = implode( ' ', array( $this->settings['class'], ) ); $html .= '
'; if ( '' !== $this->settings['label'] ) { $html .= ' '; } $value = filter_var( $this->settings['value'], FILTER_VALIDATE_BOOLEAN ); $html .= '
'; $html .= ''; $html .= ''; $html .= ''; $html .= ''; $html .= ''; $html .= ''; $html .= '
'; $html .= '
'; return $html; } } }