AdminPageFramework_Form_admin_page::_isThisSectionSetToThisPage PHP Méthode

_isThisSectionSetToThisPage() private méthode

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'];
    }