AdminPageFramework_Form_View___SectionTitle::_getDebugInfo PHP Method

_getDebugInfo() private method

private _getDebugInfo ( $aSectionset )
    private function _getDebugInfo($aSectionset)
    {
        if (!$aSectionset['show_debug_info']) {
            return '';
        }
        $_oToolTip = new AdminPageFramework_Form_View___ToolTip(array('title' => $this->oMsg->get('section_arguments'), 'dash-icon' => 'dashicons-info', 'icon_alt_text' => '[' . $this->oMsg->get('debug') . ' ]', 'content' => AdminPageFramework_Debug::getDetails($aSectionset) . '<span class="admin-page-framework-info">' . $this->getFrameworkNameVersion() . '  (' . $this->oMsg->get('debug_info_will_be_disabled') . ')' . '</span>', 'attributes' => array('container' => array('class' => 'debug-info-field-arguments'))), $aSectionset['_section_path'] . '_debug');
        return $_oToolTip->get();
    }