API15:JApplication/triggerEvent/ja
出典: Joomla! ドキュメンテーション
目次 |
Description
Calls all handlers associated with an event group.
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); }
Examples
<CodeExamplesForm />
