API15

API15:JApplication/triggerEvent

From Joomla! Documentation

Revision as of 21:51, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Calls all handlers associated with an event group. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JApplication/triggerEvent|Edit D...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Calls all handlers associated with an event group.

[Edit Descripton]

Template:Description:JApplication/triggerEvent

Syntax

triggerEvent($event, $args=null)
Parameter Name Default Value Description
$event The event name.
$args null An array of arguments.

Returns

array An array of results from each function call.

Defined in

libraries/joomla/application/application.php

Importing

jimport( 'joomla.application.application' );

Source Body

function triggerEvent($event, $args=null)
{
        $dispatcher = &JDispatcher::getInstance();
        return $dispatcher->trigger($event, $args);
}

[Edit See Also] Template:SeeAlso:JApplication/triggerEvent

Examples

<CodeExamplesForm />