API16:JApplication/triggerEvent
From Joomla! Documentation
Description
Calls all handlers associated with an event group.
<! removed transcluded page call, red link never existed >
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);
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples