API16:JHtmlBehavior/switcher
From Joomla! Documentation
<! removed transcluded page call, red link never existed >
Syntax
static switcher()
Defined in
libraries/joomla/html/html/behavior.php
Importing
jimport( 'joomla.html.html.behavior' );
Source Body
public static function switcher()
{
JHtml::_('behavior.framework');
JHTML::_('script','system/switcher.js', false, true);
$script = "
document.switcher = null;
window.addEvent('domready', function(){
toggler = document.id('submenu')
element = document.id('config-document')
if(element) {
document.switcher = new JSwitcher(toggler, element, {cookieName: toggler.getAttribute('class')});
}
});";
JFactory::getDocument()->addScriptDeclaration($script);
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples