API16

Difference between revisions of "JHtmlBehavior/switcher"

From Joomla! Documentation

< API16:JHtmlBehavior
(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 >
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JHtmlBehavior/switcher|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
 
{{Description:JHtmlBehavior/switcher}}
 
  
 
===Syntax===
 
===Syntax===
Line 36: Line 31:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JHtmlBehavior/switcher|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JHtmlBehavior/switcher}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=switcher
 
  category=switcher
 
  category=JHtmlBehavior
 
  category=JHtmlBehavior
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:45, 24 March 2017

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

<! removed transcluded page call, red link never existed >

Syntax[edit]

static switcher()


Defined in[edit]

libraries/joomla/html/html/behavior.php

Importing[edit]

jimport( 'joomla.html.html.behavior' );

Source Body[edit]

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[edit]

Code Examples[edit]