Chunk

Difference between revisions of "Plugin"

From Joomla! Documentation

(Removed link to self)
(Marked this version for translation)
(13 intermediate revisions by 6 users not shown)
Line 1: Line 1:
A plugin is a kind of Joomla! [[extension]]. Plugins provide routines which are associated with trigger events within Joomla. When a particular trigger event occurs all plugin routines of the type associated with the event are executed in sequence. In this way it is possible to add functionality to the Joomla [[Framework]].
+
<noinclude><languages /></noinclude>
 +
<translate><!--T:4-->
 +
A plugin is a kind of Joomla! [[S:MyLanguage/extension|extension]]. Plugins provide functions which are associated with trigger events. Joomla provides a set of core [[S:MyLanguage/Plugin/Events|plugin events]], but any extension can fire (custom) events. When a particular event occurs, all plugin functions of the type associated with the event are executed in sequence. This is a powerful way of extending the functionality of the Joomla! [[S:MyLanguage/Platform|Platform]]. It also offers extension developers a way to allow other extensions to respond to their actions, making extensions extensible.</translate>
  
'''See also''': [[Component]], [[Module]], [[Template]]
+
<translate><!--T:5-->
 +
The Joomla! plugin architecture follows the [[wp:Observer_pattern|Observer design pattern]]. The JPlugin class provides the means to register custom plugin code with core or custom events. The JDispatcher class (JEventDispatcher in Joomla 3.x) is an event handler which calls all plugins registered for a particular event, when that event is triggered.</translate>
 +
 
 +
<translate><!--T:6-->
 +
'''See also''': [[S:MyLanguage/Component|Component]], [[S:MyLanguage/Module|Module]], [[S:MyLanguage/Template|Template]]</translate>
 +
 
 +
<noinclude>
 +
<translate>
 +
<!--T:7-->
 +
[[Category:Glossary definitions]]
 +
</translate>
 +
</noinclude>

Revision as of 09:32, 27 May 2015

Other languages:
Bahasa Indonesia • ‎Deutsch • ‎English • ‎Kiswahili • ‎Nederlands • ‎català • ‎dansk • ‎español • ‎français • ‎italiano • ‎português • ‎português do Brasil • ‎svenska • ‎български • ‎русский • ‎العربية • ‎中文(台灣)‎ • ‎日本語

A plugin is a kind of Joomla! extension. Plugins provide functions which are associated with trigger events. Joomla provides a set of core plugin events, but any extension can fire (custom) events. When a particular event occurs, all plugin functions of the type associated with the event are executed in sequence. This is a powerful way of extending the functionality of the Joomla! Platform. It also offers extension developers a way to allow other extensions to respond to their actions, making extensions extensible.

The Joomla! plugin architecture follows the Observer design pattern. The JPlugin class provides the means to register custom plugin code with core or custom events. The JDispatcher class (JEventDispatcher in Joomla 3.x) is an event handler which calls all plugins registered for a particular event, when that event is triggered.

See also: Component, Module, Template