'; echo '
Loading...
'; echo ''; } /** * Callback for the (optional) Start Up submenu page. * * @return void */ public function startup_page_callback() { echo '
'; echo '
Loading...
'; echo '
'; } /** * Callback for the Settings submenu page. * * @return void */ public function settings_page_callback() { $handle = Settings_Admin_Page::$handle; wp_enqueue_script( $handle ); wp_enqueue_style( $handle ); echo '
'; echo '
Loading...
'; echo '
'; } /** * Callback for the Getting Started main menu page. * * @return void */ public function getting_started_page_callback() { $handle = Getting_Started::$handle; wp_enqueue_script( $handle ); wp_enqueue_style( $handle ); $output = '
'; $output .= '
Loading...
'; $output .= '
'; echo wp_kses_post( $output ); } } // Initialize the admin menu. new Menu();