display( 'Name' ), esc_html__( 'About', 'neira-lite' ) . ' ' . $theme->display( 'Name' ), 'activate_plugins', 'neira-lite-welcome', array( $this, 'welcome_screen', ) ); add_action( 'admin_print_styles-' . $page, array( $this, 'enqueue_styles' ) ); } /** * Enqueue styles. */ public function enqueue_styles() { global $neira_lite_version; wp_enqueue_style( 'neira-lite-welcome', get_template_directory_uri() . '/assets/css/welcome.css', array(), $neira_lite_version ); } /** * Add admin notice. */ public function admin_notice() { global $neira_lite_version, $pagenow; wp_enqueue_style( 'neira-lite-message', get_template_directory_uri() . '/assets/css/message.css', array(), $neira_lite_version ); // Let's bail on theme activation. if ( 'themes.php' == $pagenow && isset( $_GET['activated'] ) ) { add_action( 'admin_notices', array( $this, 'welcome_notice' ) ); update_option( 'neira_lite_admin_notice_welcome', 1 ); // No option? Let run the notice wizard again.. } elseif ( ! get_option( 'neira_lite_admin_notice_welcome' ) ) { add_action( 'admin_notices', array( $this, 'welcome_notice' ) ); } } /** * Hide a notice if the GET variable is set. */ public static function hide_notices() { if ( isset( $_GET['neira-lite-hide-notice'] ) && isset( $_GET['_neira_lite_notice_nonce'] ) ) { if ( ! wp_verify_nonce( esc_url_raw( wp_unslash($_GET['_neira_lite_notice_nonce']) ), 'neira_lite_hide_notices_nonce' ) ) { wp_die( esc_html_e( 'Action failed. Please refresh the page and retry.', 'neira-lite' ) ); } if ( ! current_user_can( 'manage_options' ) ) { wp_die( esc_html_e( 'Cheatin’ huh?', 'neira-lite' ) ); } $hide_notice = sanitize_text_field( wp_unslash( $_GET['neira-lite-hide-notice'] ) ); update_option( 'neira_lite_admin_notice_' . $hide_notice, 1 ); } } /** * Show welcome notice. */ public function welcome_notice() { ?>

Welcome Page.', 'neira-lite' ), array( 'a' => array( 'href' => array() ) ) ), esc_url( admin_url( 'themes.php?page=neira-lite-welcome' ) ) ); ?>

display( 'Name' )); ?>

display( 'Description' )); ?>

{$current_tab . '_screen'}(); } // Fallback to about screen. return $this->about_screen(); } /** * Output the about screen. */ public function about_screen() { $theme = wp_get_theme( get_template() ); ?>
intro(); ?>

display( 'Name' )); ?>

display( 'Name' )); ?>

|
intro(); ?>

get_contents( $changelog_file ); $changelog_list = $this->parse_changelog( $changelog ); echo wp_kses_post( $changelog_list ); } ?>
'; foreach ( $changes as $index => $line ) { $changelog .= wp_kses_post( preg_replace( '~(=\s*Version\s*(\d+(?:\.\d+)+)\s*=|$)~Uis', '${1}', $line ) ); } $changelog .= ''; } return wp_kses_post( $changelog ); } /** * Output the supported plugins screen. */ public function supported_plugins_screen() { ?>
intro(); ?>

intro(); ?>