API15:JApplication/triggerEvent
From Joomla! Documentation
Description
Calls all handlers associated with an event group.
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 />