submenu_page = $submenu_page; } /** * Adds a submenu for this plugin to the 'Tools' menu. */ public function init() { add_action( 'admin_menu', array( $this, 'add_options_page' ) ); } /** * Creates the submenu item and calls on the Submenu Page object to render * the actual contents of the page. */ public function add_options_page() { add_options_page( 'ZGo Payment Gateway Support', 'ZGo Payments', 'manage_options', 'zgopmtlist', array( $this->submenu_page, 'render' ) ); } }