$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.','appointment' )
) );
}
}
/**
* Load scripts for customizer page
* @sfunctionse 1.8.2.4
*/
public function appointment_scripts_for_customizer() {
wp_enqueue_style( 'appointment-info-screen-customizer-css', get_template_directory_uri() . '/functions/appointment-info/css/welcome_customizer.css' );
wp_enqueue_script( 'appointment-info-screen-customizer-js', get_template_directory_uri() . '/functions/appointment-info/js/welcome_customizer.js', array('jquery'), '20120206', true );
global $appointment_required_actions;
$nr_actions_required = 0;
/* get number of required actions */
if( get_option('appointment_show_required_actions') ):
$appointment_show_required_actions = get_option('appointment_show_required_actions');
else:
$appointment_show_required_actions = array();
endif;
if( !empty($appointment_required_actions) ):
foreach( $appointment_required_actions as $appointment_required_action_value ):
if(( !isset( $appointment_required_action_value['check'] ) || ( isset( $appointment_required_action_value['check'] ) && ( $appointment_required_action_value['check'] == false ) ) ) && ((isset($appointment_show_required_actions[$appointment_required_action_value['id']]) && ($appointment_show_required_actions[$appointment_required_action_value['id']] == true)) || !isset($appointment_show_required_actions[$appointment_required_action_value['id']]) )) :
$nr_actions_required++;
endif;
endforeach;
endif;
wp_localize_script( 'appointment-info-screen-customizer-js', 'appointmentLiteWelcomeScreenObject', array(
'nr_actions_required' => $nr_actions_required,
'aboutpage' => esc_url( admin_url( 'themes.php?page=appointment-info#actions_required' ) ),
'customizerpage' => esc_url( admin_url( 'customize.php#actions_required' ) ),
'themeinfo' => __('View Theme Info','appointment'),
) );
}
/**
* Dismiss required actions
* @sfunctionse 1.8.2.4
*/
public function appointment_dismiss_required_action_callback() {
global $appointment_required_actions;
$appointment_dismiss_id = (isset($_GET['dismiss_id'])) ? $_GET['dismiss_id'] : 0;
echo $appointment_dismiss_id; /* this is needed and it's the id of the dismissable required action */
if( !empty($appointment_dismiss_id) ):
/* if the option exists, update the record for the specified id */
if( get_option('appointment_show_required_actions') ):
$appointment_show_required_actions = get_option('appointment_show_required_actions');
$appointment_show_required_actions[$appointment_dismiss_id] = false;
update_option( 'appointment_show_required_actions',$appointment_show_required_actions );
/* create the new option,with false for the specified id */
else:
$appointment_show_required_actions_new = array();
if( !empty($appointment_required_actions) ):
foreach( $appointment_required_actions as $appointment_required_action ):
if( $appointment_required_action['id'] == $appointment_dismiss_id ):
$appointment_show_required_actions_new[$appointment_required_action['id']] = false;
else:
$appointment_show_required_actions_new[$appointment_required_action['id']] = true;
endif;
endforeach;
update_option( 'appointment_show_required_actions', $appointment_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 appointment_welcome_screen() {
require_once( ABSPATH . 'wp-load.php' );
require_once( ABSPATH . 'wp-admin/admin.php' );
require_once( ABSPATH . 'wp-admin/admin-header.php' );
?>