AdminPageFramework_Form_View___SectionCaption::_shouldShowCaptionTitle PHP Метод

_shouldShowCaptionTitle() приватный Метод

private _shouldShowCaptionTitle ( $aSectionset, $iSectionIndex )
    private function _shouldShowCaptionTitle($aSectionset, $iSectionIndex)
    {
        if (!$aSectionset['title']) {
            return false;
        }
        if ($aSectionset['collapsible']) {
            return false;
        }
        if ($aSectionset['section_tab_slug']) {
            return false;
        }
        if ($aSectionset['repeatable'] && $iSectionIndex != 0) {
            return false;
        }
        return true;
    }