AdminPageFramework_Form_admin_page::_isThisSectionSetToThisPage PHP Method

_isThisSectionSetToThisPage() private method

private _isThisSectionSetToThisPage ( $sSectionPath, $sPageSlug )
    private function _isThisSectionSetToThisPage($sSectionPath, $sPageSlug)
    {
        if (!isset($this->aSectionsets[$sSectionPath]['page_slug'])) {
            return false;
        }
        return $sPageSlug === $this->aSectionsets[$sSectionPath]['page_slug'];
    }