', '' ); ?>

$nr_actions_required, 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'template_directory' => get_template_directory_uri(), 'no_required_actions_text' => __( 'Hooray! There are no required actions for you right now.','spasalon' ) ) ); } } /** * Load scripts for customizer page * @sfunctionse 1.8.2.4 */ public function spasalon_scripts_for_customizer() { wp_enqueue_style( 'spasalon-info-screen-customizer-css', get_template_directory_uri() . '/functions/spasalon-info/css/welcome_customizer.css' ); wp_enqueue_script( 'spasalon-info-screen-customizer-js', get_template_directory_uri() . '/functions/spasalon-info/js/welcome_customizer.js', array('jquery'), '20120206', true ); global $spasalon_required_actions; $nr_actions_required = 0; /* get number of required actions */ if( get_option('spasalon_show_required_actions') ): $spasalon_show_required_actions = get_option('spasalon_show_required_actions'); else: $spasalon_show_required_actions = array(); endif; if( !empty($spasalon_required_actions) ): foreach( $spasalon_required_actions as $spasalon_required_action_value ): if(( !isset( $spasalon_required_action_value['check'] ) || ( isset( $spasalon_required_action_value['check'] ) && ( $spasalon_required_action_value['check'] == false ) ) ) && ((isset($spasalon_show_required_actions[$spasalon_required_action_value['id']]) && ($spasalon_show_required_actions[$spasalon_required_action_value['id']] == true)) || !isset($spasalon_show_required_actions[$spasalon_required_action_value['id']]) )) : $nr_actions_required++; endif; endforeach; endif; wp_localize_script( 'spasalon-info-screen-customizer-js', 'spasalonLiteWelcomeScreenObject', array( 'nr_actions_required' => $nr_actions_required, 'aboutpage' => esc_url( admin_url( 'themes.php?page=spasalon-info#actions_required' ) ), 'customizerpage' => esc_url( admin_url( 'customize.php#actions_required' ) ), 'themeinfo' => __('View Theme Info','spasalon'), ) ); } /** * Dismiss required actions * @sfunctionse 1.8.2.4 */ public function spasalon_dismiss_required_action_callback() { global $spasalon_required_actions; $spasalon_dismiss_id = (isset($_GET['dismiss_id'])) ? $_GET['dismiss_id'] : 0; echo $spasalon_dismiss_id; /* this is needed and it's the id of the dismissable required action */ if( !empty($spasalon_dismiss_id) ): /* if the option exists, update the record for the specified id */ if( get_option('spasalon_show_required_actions') ): $spasalon_show_required_actions = get_option('spasalon_show_required_actions'); $spasalon_show_required_actions[$spasalon_dismiss_id] = false; update_option( 'spasalon_show_required_actions',$spasalon_show_required_actions ); /* create the new option,with false for the specified id */ else: $spasalon_show_required_actions_new = array(); if( !empty($spasalon_required_actions) ): foreach( $spasalon_required_actions as $spasalon_required_action ): if( $spasalon_required_action['id'] == $spasalon_dismiss_id ): $spasalon_show_required_actions_new[$spasalon_required_action['id']] = false; else: $spasalon_show_required_actions_new[$spasalon_required_action['id']] = true; endif; endforeach; update_option( 'spasalon_show_required_actions', $spasalon_show_required_actions_new ); endif; endif; endif; die(); // this is required to return a proper result } /** * Welcome screen content * @sfunctionse 1.8.2.4 */ public function hc_welcome_screen() { require_once( ABSPATH . 'wp-load.php' ); require_once( ABSPATH . 'wp-admin/admin.php' ); require_once( ABSPATH . 'wp-admin/admin-header.php' ); ?>