Your IP : 216.73.216.162


Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/
Upload File :
Current File : /home/x/b/o/xbodynamge/namtation/wp-content/welcome-screen.php.tar

xbodynamge/crosstraining/wp-content/themes/zerif-lite/inc/admin/welcome-screen/welcome-screen.php000060400000025743151117172710030300 0ustar00home<?php
/**
 * Welcome Screen Class
 *
 * @package zerif-lite
 */

/**
 * Class Zerif_Welcome
 */
class Zerif_Welcome {

	/**
	 * Constructor for the welcome screen
	 */
	public function __construct() {

		/* create dashbord page */
		add_action( 'admin_menu', array( $this, 'zerif_lite_welcome_register_menu' ) );

		/* activation notice */
		add_action( 'load-themes.php', array( $this, 'zerif_lite_activation_admin_notice' ) );

		/* enqueue script and style for welcome screen */
		add_action( 'admin_enqueue_scripts', array( $this, 'zerif_lite_welcome_style_and_scripts' ) );

		/* enqueue script for customizer */
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'zerif_lite_welcome_scripts_for_customizer' ) );

		/* load welcome screen */
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_getting_started' ), 10 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_actions_required' ), 20 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_child_themes' ), 30 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_github' ), 40 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_changelog' ), 50 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_free_pro' ), 60 );

		/* ajax callback for dismissable required actions */
		add_action( 'wp_ajax_zerif_lite_dismiss_required_action', array( $this, 'zerif_lite_dismiss_required_action_callback' ) );
		add_action( 'wp_ajax_nopriv_zerif_lite_dismiss_required_action', array( $this, 'zerif_lite_dismiss_required_action_callback' ) );

	}

	/**
	 * Creates the dashboard page
	 *
	 * @see  add_theme_page()
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_register_menu() {
		add_theme_page( 'About Zerif Lite', 'About Zerif Lite', 'activate_plugins', 'zerif-lite-welcome', array( $this, 'zerif_lite_welcome_screen' ) );
	}

	/**
	 * Adds an admin notice upon successful activation.
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_activation_admin_notice() {
		global $pagenow;

		if ( is_admin() && ( 'themes.php' == $pagenow ) && isset( $_GET['activated'] ) ) {
			add_action( 'admin_notices', array( $this, 'zerif_lite_welcome_admin_notice' ), 99 );
		}
	}

	/**
	 * Display an admin notice linking to the welcome screen
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_admin_notice() {
		?>
			<div class="updated notice is-dismissible">
				<p><?php /* translators: Welcome page link */ echo sprintf( esc_html__( 'Welcome! Thank you for choosing Zerif Lite! To fully take advantage of the best our theme can offer please make sure you visit our %1$swelcome page%2$s.', 'zerif-lite' ), '<a href="' . esc_url( admin_url( 'themes.php?page=zerif-lite-welcome' ) ) . '">', '</a>' ); ?></p>
				<p><a href="<?php echo esc_url( admin_url( 'themes.php?page=zerif-lite-welcome' ) ); ?>" class="button" style="text-decoration: none;"><?php _e( 'Get started with Zerif Lite', 'zerif-lite' ); ?></a></p>
			</div>
		<?php
	}

	/**
	 * Load welcome screen css and javascript
	 *
	 * @since  1.8.2.4
	 */
	public function zerif_lite_welcome_style_and_scripts( $hook_suffix ) {

		if ( 'appearance_page_zerif-lite-welcome' == $hook_suffix ) {
			wp_enqueue_style( 'zerif-lite-welcome-screen-css', get_template_directory_uri() . '/inc/admin/welcome-screen/css/welcome.css' );
			wp_enqueue_script( 'zerif-lite-welcome-screen-js', get_template_directory_uri() . '/inc/admin/welcome-screen/js/welcome.js', array( 'jquery' ) );

			global $zerif_required_actions;

			$nr_actions_required = 0;

			/* get number of required actions */
			if ( get_option( 'zerif_show_required_actions' ) ) :
				$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );
			else :
				$zerif_show_required_actions = array();
			endif;

			if ( ! empty( $zerif_required_actions ) ) :
				foreach ( $zerif_required_actions as $zerif_required_action_value ) :
					if ( ( ! isset( $zerif_required_action_value['check'] ) || ( isset( $zerif_required_action_value['check'] ) && ( $zerif_required_action_value['check'] == false ) ) ) && ( ( isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) && ( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] == true ) ) || ! isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) ) ) :
						$nr_actions_required++;
					endif;
				endforeach;
			endif;

			wp_localize_script(
				'zerif-lite-welcome-screen-js',
				'zerifLiteWelcomeScreenObject',
				array(
					'nr_actions_required'      => $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.', 'zerif-lite' ),
				)
			);
		}
	}

	/**
	 * Load scripts for customizer page
	 *
	 * @since  1.8.2.4
	 */
	public function zerif_lite_welcome_scripts_for_customizer() {

		wp_enqueue_style( 'zerif-lite-welcome-screen-customizer-css', get_template_directory_uri() . '/inc/admin/welcome-screen/css/welcome_customizer.css' );
		wp_enqueue_script( 'zerif-lite-welcome-screen-customizer-js', get_template_directory_uri() . '/inc/admin/welcome-screen/js/welcome_customizer.js', array( 'jquery' ), '20120206', true );

		global $zerif_required_actions;

		$nr_actions_required = 0;

		/* get number of required actions */
		if ( get_option( 'zerif_show_required_actions' ) ) :
			$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );
		else :
			$zerif_show_required_actions = array();
		endif;

		if ( ! empty( $zerif_required_actions ) ) :
			foreach ( $zerif_required_actions as $zerif_required_action_value ) :
				if ( ( ! isset( $zerif_required_action_value['check'] ) || ( isset( $zerif_required_action_value['check'] ) && ( $zerif_required_action_value['check'] == false ) ) ) && ( ( isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) && ( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] == true ) ) || ! isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) ) ) :
					$nr_actions_required++;
				endif;
			endforeach;
		endif;

		wp_localize_script(
			'zerif-lite-welcome-screen-customizer-js',
			'zerifLiteWelcomeScreenCustomizerObject',
			array(
				'nr_actions_required' => $nr_actions_required,
				'aboutpage'           => esc_url( admin_url( 'themes.php?page=zerif-lite-welcome#actions_required' ) ),
				'customizerpage'      => esc_url( admin_url( 'customize.php#actions_required' ) ),
			)
		);
	}

	/**
	 * Dismiss required actions
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_dismiss_required_action_callback() {

		global $zerif_required_actions;

		$zerif_dismiss_id = ( isset( $_GET['dismiss_id'] ) ) ? $_GET['dismiss_id'] : 0;

		echo $zerif_dismiss_id; /* this is needed and it's the id of the dismissable required action */

		if ( ! empty( $zerif_dismiss_id ) ) :

			/* if the option exists, update the record for the specified id */
			if ( get_option( 'zerif_show_required_actions' ) ) :

				$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );

				$zerif_show_required_actions[ $zerif_dismiss_id ] = false;

				update_option( 'zerif_show_required_actions', $zerif_show_required_actions );

				/* create the new option,with false for the specified id */
			else :

				$zerif_show_required_actions_new = array();

				if ( ! empty( $zerif_required_actions ) ) :

					foreach ( $zerif_required_actions as $zerif_required_action ) :

						if ( $zerif_required_action['id'] == $zerif_dismiss_id ) :
							$zerif_show_required_actions_new[ $zerif_required_action['id'] ] = false;
						else :
							$zerif_show_required_actions_new[ $zerif_required_action['id'] ] = true;
						endif;

					endforeach;

					update_option( 'zerif_show_required_actions', $zerif_show_required_actions_new );

				endif;

			endif;

		endif;

		die(); // this is required to return a proper result
	}


	/**
	 * Welcome screen content
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_screen() {

		require_once( ABSPATH . 'wp-load.php' );
		require_once( ABSPATH . 'wp-admin/admin.php' );
		require_once( ABSPATH . 'wp-admin/admin-header.php' );
		?>

		<ul class="zerif-lite-nav-tabs" role="tablist">
			<li role="presentation" class="active"><a href="#getting_started" aria-controls="getting_started" role="tab" data-toggle="tab"><?php esc_html_e( 'Getting started', 'zerif-lite' ); ?></a></li>
			<li role="presentation" class="zerif-lite-w-red-tab"><a href="#actions_required" aria-controls="actions_required" role="tab" data-toggle="tab"><?php esc_html_e( 'Actions required', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#child_themes" aria-controls="child_themes" role="tab" data-toggle="tab"><?php esc_html_e( 'Child themes', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#github" aria-controls="github" role="tab" data-toggle="tab"><?php esc_html_e( 'Contribute', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#changelog" aria-controls="changelog" role="tab" data-toggle="tab"><?php esc_html_e( 'Changelog', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#free_pro" aria-controls="free_pro" role="tab" data-toggle="tab"><?php esc_html_e( 'Free VS PRO', 'zerif-lite' ); ?></a></li>
		</ul>

		<div class="zerif-lite-tab-content">

			<?php
			/**
			 * Actions hookes on the welcome page
			 *
			 * @hooked zerif_lite_welcome_getting_started - 10
			 * @hooked zerif_lite_welcome_actions_required - 20
			 * @hooked zerif_lite_welcome_child_themes - 30
			 * @hooked zerif_lite_welcome_github - 40
			 * @hooked zerif_lite_welcome_changelog - 50
			 * @hooked zerif_lite_welcome_free_pro - 60
			 */
			do_action( 'zerif_lite_welcome' );
			?>

		</div>
		<?php
	}

	/**
	 * Getting started
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_getting_started() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/getting-started.php' );
	}

	/**
	 * Actions required
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_actions_required() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/actions-required.php' );
	}

	/**
	 * Child themes
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_child_themes() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/child-themes.php' );
	}

	/**
	 * Contribute
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_github() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/github.php' );
	}

	/**
	 * Changelog
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_changelog() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/changelog.php' );
	}

	/**
	 * Free vs PRO
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_free_pro() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/free_pro.php' );
	}
}

$GLOBALS['Zerif_Welcome'] = new Zerif_Welcome();
home/xbodynamge/www/wp-content/themes/zerif-lite/inc/admin/welcome-screen/welcome-screen.php000064400000025725151124460200026312 0ustar00<?php
/**
 * Welcome Screen Class
 *
 * @package zerif-lite
 */

/**
 * Class Zerif_Welcome
 */
class Zerif_Welcome {

	/**
	 * Constructor for the welcome screen
	 */
	public function __construct() {

		/* create dashbord page */
		add_action( 'admin_menu', array( $this, 'zerif_lite_welcome_register_menu' ) );

		/* activation notice */
		add_action( 'load-themes.php', array( $this, 'zerif_lite_activation_admin_notice' ) );

		/* enqueue script and style for welcome screen */
		add_action( 'admin_enqueue_scripts', array( $this, 'zerif_lite_welcome_style_and_scripts' ) );

		/* enqueue script for customizer */
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'zerif_lite_welcome_scripts_for_customizer' ) );

		/* load welcome screen */
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_getting_started' ), 10 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_actions_required' ), 20 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_child_themes' ), 30 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_github' ), 40 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_changelog' ), 50 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_free_pro' ), 60 );

		/* ajax callback for dismissable required actions */
		add_action( 'wp_ajax_zerif_lite_dismiss_required_action', array( $this, 'zerif_lite_dismiss_required_action_callback' ) );
		add_action( 'wp_ajax_nopriv_zerif_lite_dismiss_required_action', array( $this, 'zerif_lite_dismiss_required_action_callback' ) );

	}

	/**
	 * Creates the dashboard page
	 *
	 * @see  add_theme_page()
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_register_menu() {
		add_theme_page( 'About Zerif Lite', 'About Zerif Lite', 'activate_plugins', 'zerif-lite-welcome', array( $this, 'zerif_lite_welcome_screen' ) );
	}

	/**
	 * Adds an admin notice upon successful activation.
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_activation_admin_notice() {
		global $pagenow;

		if ( is_admin() && ( 'themes.php' == $pagenow ) && isset( $_GET['activated'] ) ) {
			add_action( 'admin_notices', array( $this, 'zerif_lite_welcome_admin_notice' ), 99 );
		}
	}

	/**
	 * Display an admin notice linking to the welcome screen
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_admin_notice() {
		?>
			<div class="updated notice is-dismissible">
				<p><?php /* translators: Welcome page link */ echo sprintf( esc_html__( 'Welcome! Thank you for choosing Zerif Lite! To fully take advantage of the best our theme can offer please make sure you visit our %1$swelcome page%2$s.', 'zerif-lite' ), '<a href="' . esc_url( admin_url( 'themes.php?page=zerif-lite-welcome' ) ) . '">', '</a>' ); ?></p>
				<p><a href="<?php echo esc_url( admin_url( 'themes.php?page=zerif-lite-welcome' ) ); ?>" class="button" style="text-decoration: none;"><?php _e( 'Get started with Zerif Lite', 'zerif-lite' ); ?></a></p>
			</div>
		<?php
	}

	/**
	 * Load welcome screen css and javascript
	 *
	 * @since  1.8.2.4
	 */
	public function zerif_lite_welcome_style_and_scripts( $hook_suffix ) {

		if ( 'appearance_page_zerif-lite-welcome' == $hook_suffix ) {
			wp_enqueue_style( 'zerif-lite-welcome-screen-css', get_template_directory_uri() . '/inc/admin/welcome-screen/css/welcome.css' );
			wp_enqueue_script( 'zerif-lite-welcome-screen-js', get_template_directory_uri() . '/inc/admin/welcome-screen/js/welcome.js', array( 'jquery' ) );

			global $zerif_required_actions;

			$nr_actions_required = 0;

			/* get number of required actions */
			if ( get_option( 'zerif_show_required_actions' ) ) :
				$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );
			else :
				$zerif_show_required_actions = array();
			endif;

			if ( ! empty( $zerif_required_actions ) ) :
				foreach ( $zerif_required_actions as $zerif_required_action_value ) :
					if ( ( ! isset( $zerif_required_action_value['check'] ) || ( isset( $zerif_required_action_value['check'] ) && ( $zerif_required_action_value['check'] == false ) ) ) && ( ( isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) && ( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] == true ) ) || ! isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) ) ) :
						$nr_actions_required++;
					endif;
				endforeach;
			endif;

			wp_localize_script(
				'zerif-lite-welcome-screen-js', 'zerifLiteWelcomeScreenObject', array(
					'nr_actions_required'      => $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.', 'zerif-lite' ),
				)
			);
		}
	}

	/**
	 * Load scripts for customizer page
	 *
	 * @since  1.8.2.4
	 */
	public function zerif_lite_welcome_scripts_for_customizer() {

		wp_enqueue_style( 'zerif-lite-welcome-screen-customizer-css', get_template_directory_uri() . '/inc/admin/welcome-screen/css/welcome_customizer.css' );
		wp_enqueue_script( 'zerif-lite-welcome-screen-customizer-js', get_template_directory_uri() . '/inc/admin/welcome-screen/js/welcome_customizer.js', array( 'jquery' ), '20120206', true );

		global $zerif_required_actions;

		$nr_actions_required = 0;

		/* get number of required actions */
		if ( get_option( 'zerif_show_required_actions' ) ) :
			$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );
		else :
			$zerif_show_required_actions = array();
		endif;

		if ( ! empty( $zerif_required_actions ) ) :
			foreach ( $zerif_required_actions as $zerif_required_action_value ) :
				if ( ( ! isset( $zerif_required_action_value['check'] ) || ( isset( $zerif_required_action_value['check'] ) && ( $zerif_required_action_value['check'] == false ) ) ) && ( ( isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) && ( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] == true ) ) || ! isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) ) ) :
					$nr_actions_required++;
				endif;
			endforeach;
		endif;

		wp_localize_script(
			'zerif-lite-welcome-screen-customizer-js', 'zerifLiteWelcomeScreenCustomizerObject', array(
				'nr_actions_required' => $nr_actions_required,
				'aboutpage'           => esc_url( admin_url( 'themes.php?page=zerif-lite-welcome#actions_required' ) ),
				'customizerpage'      => esc_url( admin_url( 'customize.php#actions_required' ) ),
			)
		);
	}

	/**
	 * Dismiss required actions
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_dismiss_required_action_callback() {

		global $zerif_required_actions;

		$zerif_dismiss_id = ( isset( $_GET['dismiss_id'] ) ) ? $_GET['dismiss_id'] : 0;

		echo $zerif_dismiss_id; /* this is needed and it's the id of the dismissable required action */

		if ( ! empty( $zerif_dismiss_id ) ) :

			/* if the option exists, update the record for the specified id */
			if ( get_option( 'zerif_show_required_actions' ) ) :

				$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );

				$zerif_show_required_actions[ $zerif_dismiss_id ] = false;

				update_option( 'zerif_show_required_actions', $zerif_show_required_actions );

				/* create the new option,with false for the specified id */
			else :

				$zerif_show_required_actions_new = array();

				if ( ! empty( $zerif_required_actions ) ) :

					foreach ( $zerif_required_actions as $zerif_required_action ) :

						if ( $zerif_required_action['id'] == $zerif_dismiss_id ) :
							$zerif_show_required_actions_new[ $zerif_required_action['id'] ] = false;
						else :
							$zerif_show_required_actions_new[ $zerif_required_action['id'] ] = true;
						endif;

					endforeach;

					update_option( 'zerif_show_required_actions', $zerif_show_required_actions_new );

				endif;

			endif;

		endif;

		die(); // this is required to return a proper result
	}


	/**
	 * Welcome screen content
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_screen() {

		require_once( ABSPATH . 'wp-load.php' );
		require_once( ABSPATH . 'wp-admin/admin.php' );
		require_once( ABSPATH . 'wp-admin/admin-header.php' );
		?>

		<ul class="zerif-lite-nav-tabs" role="tablist">
			<li role="presentation" class="active"><a href="#getting_started" aria-controls="getting_started" role="tab" data-toggle="tab"><?php esc_html_e( 'Getting started', 'zerif-lite' ); ?></a></li>
			<li role="presentation" class="zerif-lite-w-red-tab"><a href="#actions_required" aria-controls="actions_required" role="tab" data-toggle="tab"><?php esc_html_e( 'Actions required', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#child_themes" aria-controls="child_themes" role="tab" data-toggle="tab"><?php esc_html_e( 'Child themes', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#github" aria-controls="github" role="tab" data-toggle="tab"><?php esc_html_e( 'Contribute', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#changelog" aria-controls="changelog" role="tab" data-toggle="tab"><?php esc_html_e( 'Changelog', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#free_pro" aria-controls="free_pro" role="tab" data-toggle="tab"><?php esc_html_e( 'Free VS PRO', 'zerif-lite' ); ?></a></li>
		</ul>

		<div class="zerif-lite-tab-content">

			<?php
			/**
			 * Actions hookes on the welcome page
			 *
			 * @hooked zerif_lite_welcome_getting_started - 10
			 * @hooked zerif_lite_welcome_actions_required - 20
			 * @hooked zerif_lite_welcome_child_themes - 30
			 * @hooked zerif_lite_welcome_github - 40
			 * @hooked zerif_lite_welcome_changelog - 50
			 * @hooked zerif_lite_welcome_free_pro - 60
			 */
			do_action( 'zerif_lite_welcome' );
			?>

		</div>
		<?php
	}

	/**
	 * Getting started
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_getting_started() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/getting-started.php' );
	}

	/**
	 * Actions required
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_actions_required() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/actions-required.php' );
	}

	/**
	 * Child themes
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_child_themes() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/child-themes.php' );
	}

	/**
	 * Contribute
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_github() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/github.php' );
	}

	/**
	 * Changelog
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_changelog() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/changelog.php' );
	}

	/**
	 * Free vs PRO
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_free_pro() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/free_pro.php' );
	}
}

$GLOBALS['Zerif_Welcome'] = new Zerif_Welcome();
xbodynamge/lebauwcentre/wp-content/themes/zerif-lite/inc/admin/welcome-screen/welcome-screen.php000064400000025743151151023010030061 0ustar00home<?php
/**
 * Welcome Screen Class
 *
 * @package zerif-lite
 */

/**
 * Class Zerif_Welcome
 */
class Zerif_Welcome {

	/**
	 * Constructor for the welcome screen
	 */
	public function __construct() {

		/* create dashbord page */
		add_action( 'admin_menu', array( $this, 'zerif_lite_welcome_register_menu' ) );

		/* activation notice */
		add_action( 'load-themes.php', array( $this, 'zerif_lite_activation_admin_notice' ) );

		/* enqueue script and style for welcome screen */
		add_action( 'admin_enqueue_scripts', array( $this, 'zerif_lite_welcome_style_and_scripts' ) );

		/* enqueue script for customizer */
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'zerif_lite_welcome_scripts_for_customizer' ) );

		/* load welcome screen */
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_getting_started' ), 10 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_actions_required' ), 20 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_child_themes' ), 30 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_github' ), 40 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_changelog' ), 50 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_free_pro' ), 60 );

		/* ajax callback for dismissable required actions */
		add_action( 'wp_ajax_zerif_lite_dismiss_required_action', array( $this, 'zerif_lite_dismiss_required_action_callback' ) );
		add_action( 'wp_ajax_nopriv_zerif_lite_dismiss_required_action', array( $this, 'zerif_lite_dismiss_required_action_callback' ) );

	}

	/**
	 * Creates the dashboard page
	 *
	 * @see  add_theme_page()
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_register_menu() {
		add_theme_page( 'About Zerif Lite', 'About Zerif Lite', 'activate_plugins', 'zerif-lite-welcome', array( $this, 'zerif_lite_welcome_screen' ) );
	}

	/**
	 * Adds an admin notice upon successful activation.
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_activation_admin_notice() {
		global $pagenow;

		if ( is_admin() && ( 'themes.php' == $pagenow ) && isset( $_GET['activated'] ) ) {
			add_action( 'admin_notices', array( $this, 'zerif_lite_welcome_admin_notice' ), 99 );
		}
	}

	/**
	 * Display an admin notice linking to the welcome screen
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_admin_notice() {
		?>
			<div class="updated notice is-dismissible">
				<p><?php /* translators: Welcome page link */ echo sprintf( esc_html__( 'Welcome! Thank you for choosing Zerif Lite! To fully take advantage of the best our theme can offer please make sure you visit our %1$swelcome page%2$s.', 'zerif-lite' ), '<a href="' . esc_url( admin_url( 'themes.php?page=zerif-lite-welcome' ) ) . '">', '</a>' ); ?></p>
				<p><a href="<?php echo esc_url( admin_url( 'themes.php?page=zerif-lite-welcome' ) ); ?>" class="button" style="text-decoration: none;"><?php _e( 'Get started with Zerif Lite', 'zerif-lite' ); ?></a></p>
			</div>
		<?php
	}

	/**
	 * Load welcome screen css and javascript
	 *
	 * @since  1.8.2.4
	 */
	public function zerif_lite_welcome_style_and_scripts( $hook_suffix ) {

		if ( 'appearance_page_zerif-lite-welcome' == $hook_suffix ) {
			wp_enqueue_style( 'zerif-lite-welcome-screen-css', get_template_directory_uri() . '/inc/admin/welcome-screen/css/welcome.css' );
			wp_enqueue_script( 'zerif-lite-welcome-screen-js', get_template_directory_uri() . '/inc/admin/welcome-screen/js/welcome.js', array( 'jquery' ) );

			global $zerif_required_actions;

			$nr_actions_required = 0;

			/* get number of required actions */
			if ( get_option( 'zerif_show_required_actions' ) ) :
				$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );
			else :
				$zerif_show_required_actions = array();
			endif;

			if ( ! empty( $zerif_required_actions ) ) :
				foreach ( $zerif_required_actions as $zerif_required_action_value ) :
					if ( ( ! isset( $zerif_required_action_value['check'] ) || ( isset( $zerif_required_action_value['check'] ) && ( $zerif_required_action_value['check'] == false ) ) ) && ( ( isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) && ( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] == true ) ) || ! isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) ) ) :
						$nr_actions_required++;
					endif;
				endforeach;
			endif;

			wp_localize_script(
				'zerif-lite-welcome-screen-js',
				'zerifLiteWelcomeScreenObject',
				array(
					'nr_actions_required'      => $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.', 'zerif-lite' ),
				)
			);
		}
	}

	/**
	 * Load scripts for customizer page
	 *
	 * @since  1.8.2.4
	 */
	public function zerif_lite_welcome_scripts_for_customizer() {

		wp_enqueue_style( 'zerif-lite-welcome-screen-customizer-css', get_template_directory_uri() . '/inc/admin/welcome-screen/css/welcome_customizer.css' );
		wp_enqueue_script( 'zerif-lite-welcome-screen-customizer-js', get_template_directory_uri() . '/inc/admin/welcome-screen/js/welcome_customizer.js', array( 'jquery' ), '20120206', true );

		global $zerif_required_actions;

		$nr_actions_required = 0;

		/* get number of required actions */
		if ( get_option( 'zerif_show_required_actions' ) ) :
			$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );
		else :
			$zerif_show_required_actions = array();
		endif;

		if ( ! empty( $zerif_required_actions ) ) :
			foreach ( $zerif_required_actions as $zerif_required_action_value ) :
				if ( ( ! isset( $zerif_required_action_value['check'] ) || ( isset( $zerif_required_action_value['check'] ) && ( $zerif_required_action_value['check'] == false ) ) ) && ( ( isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) && ( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] == true ) ) || ! isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) ) ) :
					$nr_actions_required++;
				endif;
			endforeach;
		endif;

		wp_localize_script(
			'zerif-lite-welcome-screen-customizer-js',
			'zerifLiteWelcomeScreenCustomizerObject',
			array(
				'nr_actions_required' => $nr_actions_required,
				'aboutpage'           => esc_url( admin_url( 'themes.php?page=zerif-lite-welcome#actions_required' ) ),
				'customizerpage'      => esc_url( admin_url( 'customize.php#actions_required' ) ),
			)
		);
	}

	/**
	 * Dismiss required actions
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_dismiss_required_action_callback() {

		global $zerif_required_actions;

		$zerif_dismiss_id = ( isset( $_GET['dismiss_id'] ) ) ? $_GET['dismiss_id'] : 0;

		echo $zerif_dismiss_id; /* this is needed and it's the id of the dismissable required action */

		if ( ! empty( $zerif_dismiss_id ) ) :

			/* if the option exists, update the record for the specified id */
			if ( get_option( 'zerif_show_required_actions' ) ) :

				$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );

				$zerif_show_required_actions[ $zerif_dismiss_id ] = false;

				update_option( 'zerif_show_required_actions', $zerif_show_required_actions );

				/* create the new option,with false for the specified id */
			else :

				$zerif_show_required_actions_new = array();

				if ( ! empty( $zerif_required_actions ) ) :

					foreach ( $zerif_required_actions as $zerif_required_action ) :

						if ( $zerif_required_action['id'] == $zerif_dismiss_id ) :
							$zerif_show_required_actions_new[ $zerif_required_action['id'] ] = false;
						else :
							$zerif_show_required_actions_new[ $zerif_required_action['id'] ] = true;
						endif;

					endforeach;

					update_option( 'zerif_show_required_actions', $zerif_show_required_actions_new );

				endif;

			endif;

		endif;

		die(); // this is required to return a proper result
	}


	/**
	 * Welcome screen content
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_screen() {

		require_once( ABSPATH . 'wp-load.php' );
		require_once( ABSPATH . 'wp-admin/admin.php' );
		require_once( ABSPATH . 'wp-admin/admin-header.php' );
		?>

		<ul class="zerif-lite-nav-tabs" role="tablist">
			<li role="presentation" class="active"><a href="#getting_started" aria-controls="getting_started" role="tab" data-toggle="tab"><?php esc_html_e( 'Getting started', 'zerif-lite' ); ?></a></li>
			<li role="presentation" class="zerif-lite-w-red-tab"><a href="#actions_required" aria-controls="actions_required" role="tab" data-toggle="tab"><?php esc_html_e( 'Actions required', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#child_themes" aria-controls="child_themes" role="tab" data-toggle="tab"><?php esc_html_e( 'Child themes', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#github" aria-controls="github" role="tab" data-toggle="tab"><?php esc_html_e( 'Contribute', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#changelog" aria-controls="changelog" role="tab" data-toggle="tab"><?php esc_html_e( 'Changelog', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#free_pro" aria-controls="free_pro" role="tab" data-toggle="tab"><?php esc_html_e( 'Free VS PRO', 'zerif-lite' ); ?></a></li>
		</ul>

		<div class="zerif-lite-tab-content">

			<?php
			/**
			 * Actions hookes on the welcome page
			 *
			 * @hooked zerif_lite_welcome_getting_started - 10
			 * @hooked zerif_lite_welcome_actions_required - 20
			 * @hooked zerif_lite_welcome_child_themes - 30
			 * @hooked zerif_lite_welcome_github - 40
			 * @hooked zerif_lite_welcome_changelog - 50
			 * @hooked zerif_lite_welcome_free_pro - 60
			 */
			do_action( 'zerif_lite_welcome' );
			?>

		</div>
		<?php
	}

	/**
	 * Getting started
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_getting_started() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/getting-started.php' );
	}

	/**
	 * Actions required
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_actions_required() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/actions-required.php' );
	}

	/**
	 * Child themes
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_child_themes() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/child-themes.php' );
	}

	/**
	 * Contribute
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_github() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/github.php' );
	}

	/**
	 * Changelog
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_changelog() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/changelog.php' );
	}

	/**
	 * Free vs PRO
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_free_pro() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/free_pro.php' );
	}
}

$GLOBALS['Zerif_Welcome'] = new Zerif_Welcome();
home/xbodynamge/dev/wp-content/themes/zerif-lite/inc/admin/welcome-screen/welcome-screen.php000064400000025743151153260360026253 0ustar00<?php
/**
 * Welcome Screen Class
 *
 * @package zerif-lite
 */

/**
 * Class Zerif_Welcome
 */
class Zerif_Welcome {

	/**
	 * Constructor for the welcome screen
	 */
	public function __construct() {

		/* create dashbord page */
		add_action( 'admin_menu', array( $this, 'zerif_lite_welcome_register_menu' ) );

		/* activation notice */
		add_action( 'load-themes.php', array( $this, 'zerif_lite_activation_admin_notice' ) );

		/* enqueue script and style for welcome screen */
		add_action( 'admin_enqueue_scripts', array( $this, 'zerif_lite_welcome_style_and_scripts' ) );

		/* enqueue script for customizer */
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'zerif_lite_welcome_scripts_for_customizer' ) );

		/* load welcome screen */
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_getting_started' ), 10 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_actions_required' ), 20 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_child_themes' ), 30 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_github' ), 40 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_changelog' ), 50 );
		add_action( 'zerif_lite_welcome', array( $this, 'zerif_lite_welcome_free_pro' ), 60 );

		/* ajax callback for dismissable required actions */
		add_action( 'wp_ajax_zerif_lite_dismiss_required_action', array( $this, 'zerif_lite_dismiss_required_action_callback' ) );
		add_action( 'wp_ajax_nopriv_zerif_lite_dismiss_required_action', array( $this, 'zerif_lite_dismiss_required_action_callback' ) );

	}

	/**
	 * Creates the dashboard page
	 *
	 * @see  add_theme_page()
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_register_menu() {
		add_theme_page( 'About Zerif Lite', 'About Zerif Lite', 'activate_plugins', 'zerif-lite-welcome', array( $this, 'zerif_lite_welcome_screen' ) );
	}

	/**
	 * Adds an admin notice upon successful activation.
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_activation_admin_notice() {
		global $pagenow;

		if ( is_admin() && ( 'themes.php' == $pagenow ) && isset( $_GET['activated'] ) ) {
			add_action( 'admin_notices', array( $this, 'zerif_lite_welcome_admin_notice' ), 99 );
		}
	}

	/**
	 * Display an admin notice linking to the welcome screen
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_admin_notice() {
		?>
			<div class="updated notice is-dismissible">
				<p><?php /* translators: Welcome page link */ echo sprintf( esc_html__( 'Welcome! Thank you for choosing Zerif Lite! To fully take advantage of the best our theme can offer please make sure you visit our %1$swelcome page%2$s.', 'zerif-lite' ), '<a href="' . esc_url( admin_url( 'themes.php?page=zerif-lite-welcome' ) ) . '">', '</a>' ); ?></p>
				<p><a href="<?php echo esc_url( admin_url( 'themes.php?page=zerif-lite-welcome' ) ); ?>" class="button" style="text-decoration: none;"><?php _e( 'Get started with Zerif Lite', 'zerif-lite' ); ?></a></p>
			</div>
		<?php
	}

	/**
	 * Load welcome screen css and javascript
	 *
	 * @since  1.8.2.4
	 */
	public function zerif_lite_welcome_style_and_scripts( $hook_suffix ) {

		if ( 'appearance_page_zerif-lite-welcome' == $hook_suffix ) {
			wp_enqueue_style( 'zerif-lite-welcome-screen-css', get_template_directory_uri() . '/inc/admin/welcome-screen/css/welcome.css' );
			wp_enqueue_script( 'zerif-lite-welcome-screen-js', get_template_directory_uri() . '/inc/admin/welcome-screen/js/welcome.js', array( 'jquery' ) );

			global $zerif_required_actions;

			$nr_actions_required = 0;

			/* get number of required actions */
			if ( get_option( 'zerif_show_required_actions' ) ) :
				$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );
			else :
				$zerif_show_required_actions = array();
			endif;

			if ( ! empty( $zerif_required_actions ) ) :
				foreach ( $zerif_required_actions as $zerif_required_action_value ) :
					if ( ( ! isset( $zerif_required_action_value['check'] ) || ( isset( $zerif_required_action_value['check'] ) && ( $zerif_required_action_value['check'] == false ) ) ) && ( ( isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) && ( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] == true ) ) || ! isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) ) ) :
						$nr_actions_required++;
					endif;
				endforeach;
			endif;

			wp_localize_script(
				'zerif-lite-welcome-screen-js',
				'zerifLiteWelcomeScreenObject',
				array(
					'nr_actions_required'      => $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.', 'zerif-lite' ),
				)
			);
		}
	}

	/**
	 * Load scripts for customizer page
	 *
	 * @since  1.8.2.4
	 */
	public function zerif_lite_welcome_scripts_for_customizer() {

		wp_enqueue_style( 'zerif-lite-welcome-screen-customizer-css', get_template_directory_uri() . '/inc/admin/welcome-screen/css/welcome_customizer.css' );
		wp_enqueue_script( 'zerif-lite-welcome-screen-customizer-js', get_template_directory_uri() . '/inc/admin/welcome-screen/js/welcome_customizer.js', array( 'jquery' ), '20120206', true );

		global $zerif_required_actions;

		$nr_actions_required = 0;

		/* get number of required actions */
		if ( get_option( 'zerif_show_required_actions' ) ) :
			$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );
		else :
			$zerif_show_required_actions = array();
		endif;

		if ( ! empty( $zerif_required_actions ) ) :
			foreach ( $zerif_required_actions as $zerif_required_action_value ) :
				if ( ( ! isset( $zerif_required_action_value['check'] ) || ( isset( $zerif_required_action_value['check'] ) && ( $zerif_required_action_value['check'] == false ) ) ) && ( ( isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) && ( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] == true ) ) || ! isset( $zerif_show_required_actions[ $zerif_required_action_value['id'] ] ) ) ) :
					$nr_actions_required++;
				endif;
			endforeach;
		endif;

		wp_localize_script(
			'zerif-lite-welcome-screen-customizer-js',
			'zerifLiteWelcomeScreenCustomizerObject',
			array(
				'nr_actions_required' => $nr_actions_required,
				'aboutpage'           => esc_url( admin_url( 'themes.php?page=zerif-lite-welcome#actions_required' ) ),
				'customizerpage'      => esc_url( admin_url( 'customize.php#actions_required' ) ),
			)
		);
	}

	/**
	 * Dismiss required actions
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_dismiss_required_action_callback() {

		global $zerif_required_actions;

		$zerif_dismiss_id = ( isset( $_GET['dismiss_id'] ) ) ? $_GET['dismiss_id'] : 0;

		echo $zerif_dismiss_id; /* this is needed and it's the id of the dismissable required action */

		if ( ! empty( $zerif_dismiss_id ) ) :

			/* if the option exists, update the record for the specified id */
			if ( get_option( 'zerif_show_required_actions' ) ) :

				$zerif_show_required_actions = get_option( 'zerif_show_required_actions' );

				$zerif_show_required_actions[ $zerif_dismiss_id ] = false;

				update_option( 'zerif_show_required_actions', $zerif_show_required_actions );

				/* create the new option,with false for the specified id */
			else :

				$zerif_show_required_actions_new = array();

				if ( ! empty( $zerif_required_actions ) ) :

					foreach ( $zerif_required_actions as $zerif_required_action ) :

						if ( $zerif_required_action['id'] == $zerif_dismiss_id ) :
							$zerif_show_required_actions_new[ $zerif_required_action['id'] ] = false;
						else :
							$zerif_show_required_actions_new[ $zerif_required_action['id'] ] = true;
						endif;

					endforeach;

					update_option( 'zerif_show_required_actions', $zerif_show_required_actions_new );

				endif;

			endif;

		endif;

		die(); // this is required to return a proper result
	}


	/**
	 * Welcome screen content
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_screen() {

		require_once( ABSPATH . 'wp-load.php' );
		require_once( ABSPATH . 'wp-admin/admin.php' );
		require_once( ABSPATH . 'wp-admin/admin-header.php' );
		?>

		<ul class="zerif-lite-nav-tabs" role="tablist">
			<li role="presentation" class="active"><a href="#getting_started" aria-controls="getting_started" role="tab" data-toggle="tab"><?php esc_html_e( 'Getting started', 'zerif-lite' ); ?></a></li>
			<li role="presentation" class="zerif-lite-w-red-tab"><a href="#actions_required" aria-controls="actions_required" role="tab" data-toggle="tab"><?php esc_html_e( 'Actions required', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#child_themes" aria-controls="child_themes" role="tab" data-toggle="tab"><?php esc_html_e( 'Child themes', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#github" aria-controls="github" role="tab" data-toggle="tab"><?php esc_html_e( 'Contribute', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#changelog" aria-controls="changelog" role="tab" data-toggle="tab"><?php esc_html_e( 'Changelog', 'zerif-lite' ); ?></a></li>
			<li role="presentation"><a href="#free_pro" aria-controls="free_pro" role="tab" data-toggle="tab"><?php esc_html_e( 'Free VS PRO', 'zerif-lite' ); ?></a></li>
		</ul>

		<div class="zerif-lite-tab-content">

			<?php
			/**
			 * Actions hookes on the welcome page
			 *
			 * @hooked zerif_lite_welcome_getting_started - 10
			 * @hooked zerif_lite_welcome_actions_required - 20
			 * @hooked zerif_lite_welcome_child_themes - 30
			 * @hooked zerif_lite_welcome_github - 40
			 * @hooked zerif_lite_welcome_changelog - 50
			 * @hooked zerif_lite_welcome_free_pro - 60
			 */
			do_action( 'zerif_lite_welcome' );
			?>

		</div>
		<?php
	}

	/**
	 * Getting started
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_getting_started() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/getting-started.php' );
	}

	/**
	 * Actions required
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_actions_required() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/actions-required.php' );
	}

	/**
	 * Child themes
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_child_themes() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/child-themes.php' );
	}

	/**
	 * Contribute
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_github() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/github.php' );
	}

	/**
	 * Changelog
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_changelog() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/changelog.php' );
	}

	/**
	 * Free vs PRO
	 *
	 * @since 1.8.2.4
	 */
	public function zerif_lite_welcome_free_pro() {
		require_once( get_template_directory() . '/inc/admin/welcome-screen/sections/free_pro.php' );
	}
}

$GLOBALS['Zerif_Welcome'] = new Zerif_Welcome();