AdminPageFramework_Form_View___SectionCaption::_getCaptionDescription PHP Method

_getCaptionDescription() private method

private _getCaptionDescription ( $aSectionset, $hfSectionCallback )
    private function _getCaptionDescription($aSectionset, $hfSectionCallback)
    {
        if ($aSectionset['collapsible']) {
            return '';
        }
        if (!is_callable($hfSectionCallback)) {
            return '';
        }
        $_oSectionDescription = new AdminPageFramework_Form_View___Description($aSectionset['description'], 'admin-page-framework-section-description');
        return "<div class='admin-page-framework-section-description'>" . call_user_func_array($hfSectionCallback, array($_oSectionDescription->get(), $aSectionset)) . "</div>";
    }