page_slug != $_REQUEST['page'] ) { return; } } /** * Add Tools to admin menu * * @since 1.0 * @access public */ public function add_admin_menu() { add_submenu_page( 'alpha', esc_html__( 'Tools', 'alpus' ), esc_html__( 'Tools', 'alpus' ) . '' . esc_html( 'PRO', 'alpus' ) . '', 'manage_options', $this->page_slug, array( $this, 'view_tools' ), 2 ); } /** * Render tools page * * @since 1.0 * @access public */ public function view_tools() { $admin_config = Alpha_Admin::get_instance()->admin_config; Alpha_Admin_Panel::get_instance()->view_header( 'activation', $admin_config, array() ); include alpha_framework_path( ALPHA_FRAMEWORK_ADMIN . '/panel/views/go_pro.php' ); Alpha_Admin_Panel::get_instance()->view_footer( 'activation', $admin_config ); } } Alpha_Tools::get_instance();