API15

JDispatcher/getInstance

From Joomla! Documentation

< API15:JDispatcher
Revision as of 17:20, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Returns a reference to the global Event Dispatcher object, only creating it if it doesn't already exist. <span class="editsection" style="font-size:76%;"> <nowiki>[<...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" 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.

Description[edit]

Returns a reference to the global Event Dispatcher object, only creating it if it doesn't already exist.

[Edit Descripton]

Template:Description:JDispatcher/getInstance

Syntax[edit]

& getInstance()


Returns[edit]

The EventDispatcher object. 

Defined in[edit]

libraries/joomla/event/dispatcher.php

Importing[edit]

jimport( 'joomla.event.dispatcher' );

Source Body[edit]

function & getInstance()
{
        static $instance;

        if (!is_object($instance)) {
                $instance = new JDispatcher();
        }

        return $instance;
}

[Edit See Also] Template:SeeAlso:JDispatcher/getInstance

Examples[edit]

<CodeExamplesForm />