' . esc_html__( 'Absolute Weaver Theme Support Plugin required for Save/Restore', 'absolute-weaver' ) . '';
echo '
' . wp_kses_post( absolute_weaver_markdown( __( 'Please install the free *Absolute Weaver Theme Support Plugin* from the WordPress Plugin repository to enable saving and restoring your theme settings to your own computer.
This will allow you to save different versions of your designs, or transfer them to other sites.', 'absolute-weaver' ) ) ) . '
';
echo '' . esc_html( $this->label ) . '';
}
static public function process_save( $wp_customize ) {
}
static private function _absolute_weaver_filter_strip_default( $var ) {
if ( ! is_string( $var ) ) {
return true;
}
return strlen( $var ) && $var != 'default';
}
static private function _save_settings( $wp_customize, $ext ) {
// Note: a $_REQUEST based nonce has been verified before this function called
}
static public function enqueue_scripts() {
// Register
// no-op
}
}
}
if ( class_exists( 'WP_Customize_Control' ) && ! class_exists( 'Absolute_Weaver_Restore_WV_Settings' ) ) {
class Absolute_Weaver_Restore_WV_Settings extends WP_Customize_Control {
public $description = '';
static private $wvrx_error = '';
/**
*/
public function render_content() {
echo '' . esc_html( $this->label ) . '';
}
static public function process_restore( $wp_customize ) {
}
static private function _restore( $wp_customize ) {
}
static public function reset_options( $contents, $ext ) {
return true;
}
static public function enqueue_scripts() {
}
static public function controls_print_scripts() {
if ( self::$wvrx_error ) {
echo '';
}
}
}
}
} else { // there is a plugin
//
do_action( 'absolute_weaver_ts_load_save',
array( ABSOLUTE_WEAVER_VERSION ) );
}
if ( class_exists( 'WP_Customize_Control' ) && ! class_exists( 'Absolute_Weaver_Load_WA_Subtheme' ) ) {
class Absolute_Weaver_Load_WA_Subtheme extends WP_Customize_Control {
public $description = '';
static private $wvrx_error = '';
/**
*/
public function render_content() {
$cur_theme = absolute_weaver_getopt( 'theme_filename' );
echo '' . esc_html( $this->label ) . '';
if ( '' !== $this->description ) {
echo '' . esc_html( $this->description ) . '';
}
$theme_list = array(
'absolutely',
'ajax',
'arctic-white',
'black-and-white',
'blank',
'cosmic-latte',
'full-width-dark',
'go-basic-traditional',
'go-basic-full',
'go-basic-stretched',
'go-blue',
'go-green',
'kitchen-sink',
'magazine',
'pioneer',
'plain-full-width',
'raw',
'transparent-dark',
'transparent-light',
);
?>