API15:JApplication/triggerEvent
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Calls all handlers associated with an event group.
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] SeeAlso:JApplication/triggerEvent
Examples
<CodeExamplesForm />
