API16

API16:JHtmlBehavior/switcher

From Joomla! Documentation

Revision as of 22:51, 22 March 2010 by Doxiki (talk | contribs) (New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JHtmlBehavior/swi...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

[Edit Descripton]

Template:Description:JHtmlBehavior/switcher

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);
}

[Edit See Also] Template:SeeAlso:JHtmlBehavior/switcher

Examples

<CodeExamplesForm />