JHtmlBehavior/switcher: Difference between revisions
From Joomla! Documentation
New page:
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</span>
{{Description:JHtmlBehavior/swi... |
m preparing for archive only |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
<! removed transcluded page call, red link never existed > | |||
< | |||
===Syntax=== | ===Syntax=== | ||
| Line 36: | Line 31: | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | |||
< | |||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=switcher | category=switcher | ||
category=JHtmlBehavior | category=JHtmlBehavior | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API16]] | |||
Latest revision as of 01:45, 25 March 2017
<! 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