Наследование: extends AdminPageFramework_Form_View___Section_Base
 private function _getToolTip()
 {
     $_aSectionset = $this->aArguments['sectionset'];
     $_sSectionTitleTagID = str_replace('|', '_', $_aSectionset['_section_path']) . '_' . $this->aArguments['section_index'];
     $_oToolTip = new AdminPageFramework_Form_View___ToolTip($_aSectionset['tip'], $_sSectionTitleTagID);
     return $_oToolTip->get();
 }
 private function _getDebugInfo($aField)
 {
     if (!$this->_shouldShowDebugInfo($aField)) {
         return '';
     }
     $_oToolTip = new AdminPageFramework_Form_View___ToolTip(array('title' => $this->oMsg->get('field_arguments'), 'dash-icon' => 'dashicons-info', 'icon_alt_text' => '[' . $this->oMsg->get('debug') . ' ]', 'content' => AdminPageFramework_Debug::getDetails($aField) . '<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'))), $aField['field_id'] . '_debug');
     return $_oToolTip->get();
 }
 private function _getToolTip($asTip, $sElementID)
 {
     $_oToolTip = new AdminPageFramework_Form_View___ToolTip($asTip, $sElementID);
     return $_oToolTip->get();
 }