APF_Demo::load PHP Method

load() public method

Do some set-ups common in all the added pages and tabs. Alternatively you can use load_{instantiated class name} hook.
public load ( ) : void
return void
    public function load()
    {
        // Disable the page heading tabs by passing false.
        $this->setPageHeadingTabsVisibility(false);
        // Set the tag used for in-page tabs.
        $this->setInPageTabTag('h2');
        // Used to insert PHP code in example fields.
        $this->oWPRMParser = new AdminPageFramework_WPReadmeParser();
    }