芝麻web文件管理V1.00
编辑当前文件:/home/asmplong/www/ancien-site-2019/site/libraries/joomla/html/html/tabs.php
'; } /** * Close the current pane * * @return string HTML to close the pane * * @since 11.1 */ public static function end() { return '
'; } /** * Begins the display of a new panel. * * @param string Text to display. * @param string Identifier of the panel. * * @return string HTML to start a new panel * * @since 11.1 */ public static function panel($text, $id) { return '
'.$text.'
'; } /** * Load the JavaScript behavior. * * @param string The pane identifier. * @param array Array of options. * * @return void * * @since 11.1 */ protected static function _loadBehavior($group, $params = array()) { static $loaded = array(); if (!array_key_exists($group,$loaded)) { // Include MooTools framework JHtml::_('behavior.framework', true); $options = '{'; $opt['onActive'] = (isset($params['onActive'])) ? $params['onActive'] : null ; $opt['onBackground'] = (isset($params['onBackground'])) ? $params['onBackground'] : null ; $opt['display'] = (isset($params['startOffset'])) ? (int)$params['startOffset'] : null ; $opt['useStorage'] = (isset($params['useCookie']) && $params['useCookie']) ? 'true' : null ; $opt['titleSelector'] = "'dt.tabs'"; $opt['descriptionSelector'] = "'dd.tabs'"; foreach ($opt as $k => $v) { if ($v) { $options .= $k.': '.$v.','; } } if (substr($options, -1) == ',') { $options = substr($options, 0, -1); } $options .= '}'; $js = ' window.addEvent(\'domready\', function(){ $$(\'dl#'.$group.'.tabs\').each(function(tabs){ new JTabs(tabs, '.$options.'); }); });'; $document = JFactory::getDocument(); $document->addScriptDeclaration($js); JHtml::_('script','system/tabs.js', false, true); $loaded[$group] = true; } } }