API17

Difference between revisions of "JApplication::triggerEvent"

From Joomla! Documentation

(Bulk upload by Doxiki2)
 
(Updated to r1448:247ba8d88526)
(One intermediate revision by the same user not shown)
Line 8: Line 8:
 
<nowiki>[</nowiki>[[Description:JApplication::triggerEvent|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JApplication::triggerEvent|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</span>
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JApplication->triggerEvent ($event, $args=null)
+
public function triggerEvent (
 +
        $event
 +
        $args=null
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 32: Line 32:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' array An array of results from each function call.
array An array of results from each function call.
+
* '''Defined''' on line 554 of libraries/joomla/application/application.php
===Defined in===
+
* '''Since''' {{JVer|11.1 }}
libraries/joomla/application/application.php
 
===Referenced by===
 
 
===See also===
 
===See also===
 +
* {{JVer|11.1}} '''JApplication::triggerEvent source code''' on [[jplatform:application/application.php#cl-546|BitBucket]]
 +
* {{JVer|11.1}} Class [[JApplication/11.1|JApplication]]
 +
* {{JVer|11.1}} Subpackage [[Subpackage_Application/11.1|Application]]
 +
* [[JApplication::triggerEvent|Other versions of JApplication::triggerEvent]]
 +
{{SeeAlso:JApplication::triggerEvent}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JApplication::triggerEvent|Edit See Also]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[SeeAlso:JApplication::triggerEvent|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
* [[JApplication/11.1|JApplication]]
+
===User contributed notes===
* [[JApplication::triggerEvent|Other versions of this method]]
 
{{SeeAlso:JApplication::triggerEvent}}
 
===Examples===
 
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 52: Line 52:
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
 
<noinclude>[[Category:JApplication]][[Category:JApplication::triggerEvent]]</noinclude>
 
<noinclude>[[Category:JApplication]][[Category:JApplication::triggerEvent]]</noinclude>

Revision as of 20:09, 27 April 2011

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JApplication::triggerEvent[edit]

Description[edit]

Calls all handlers associated with an event group.

Template:Description:JApplication::triggerEvent [Edit Descripton]

public function triggerEvent (
        $event
        $args=null
)
Parameter Type Default Description
$event string The event name.
$args array null An array of arguments.
  • Returns array An array of results from each function call.
  • Defined on line 554 of libraries/joomla/application/application.php
  • Since Joomla 11.1

See also[edit]

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

User contributed notes[edit]

<CodeExamplesForm />