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