Chunk

Difference between revisions of "Plugin"

From Joomla! Documentation

(Removed link to self)
(Remove mambot reference)
(4 intermediate revisions by 2 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]].
+
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|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! [[Framework]]. It also offers extension developers a way to allow other extensions to respond to their actions, making extensions extensible.
  
'''See also''': [[Component]], [[Module]], [[Template]]
+
The Joomla! plugin architecture follows the [http://en.wikipedia.org/wiki/Observer_pattern Observer] design pattern. The [[JPlugin]] class is derived from [[JObserver]] and provides the means to register custom plugin code with core or custom events. The [[JEventDispatcher]] class, derived from [[JObservable]], is an event handler which calls all plugins registered for a particular event, when that event is triggered.
 +
 
 +
'''See also''': [[Component]], [[Module]], [[Template]]<noinclude>[[Category:Glossary definitions|{{PAGENAME}}]]</noinclude>

Revision as of 08:30, 26 April 2013

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! Framework. 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 is derived from JObserver and provides the means to register custom plugin code with core or custom events. The JEventDispatcher class, derived from JObservable, is an event handler which calls all plugins registered for a particular event, when that event is triggered.

See also: Component, Module, Template