AdminPageFramework_Form_View___SectionCaption::_getCaptionTitle PHP Method

_getCaptionTitle() private method

private _getCaptionTitle ( $aSectionset, $iSectionIndex, $aFieldsets, $aFieldTypeDefinitions )
    private function _getCaptionTitle($aSectionset, $iSectionIndex, $aFieldsets, $aFieldTypeDefinitions)
    {
        $_oSectionTitle = new AdminPageFramework_Form_View___SectionTitle(array('title' => $aSectionset['title'], 'tag' => 'h3', 'section_index' => $iSectionIndex, 'sectionset' => $aSectionset), $aFieldsets, $this->aSavedData, $this->aFieldErrors, $aFieldTypeDefinitions, $this->oMsg, $this->aCallbacks);
        return "<div " . $this->getAttributes(array('class' => 'admin-page-framework-section-title', 'style' => $this->getAOrB($this->_shouldShowCaptionTitle($aSectionset, $iSectionIndex), '', 'display: none;'))) . ">" . $_oSectionTitle->get() . "</div>";
    }