APF_Demo_Contact::replyToLoadPage PHP Method

replyToLoadPage() public method

Do page specific settings.
public replyToLoadPage ( $oFactory )
    public function replyToLoadPage($oFactory)
    {
        // disables the page heading tabs by passing false.
        $oFactory->setPageHeadingTabsVisibility(false);
        // sets the tag used for in-page tabs.
        $oFactory->setInPageTabTag('h2');
        // disable the page title.
        $oFactory->setPageTitleVisibility(false);
        new APF_Demo_Contact_Tab_Feedback($oFactory, $this->_sPageSlug);
        new APF_Demo_Contact_Tab_Report($oFactory, $this->_sPageSlug);
    }