Portal

Difference between revisions of "Plugin Development/Intro"

From Joomla! Documentation

< Portal:Plugin Development
(Remove 1.5)
m (en version)
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
This page contains many links to selected documentation concerning Plugin Development for {{JVer|2.5}} and {{JVer|3.x}}
+
This page contains many links to documentation concerning Plugin Development for {{JVer|2.5}} and {{JVer|3.x}}. A good place to start is with the [[#Recommending Reading|Recommending Reading]] articles below as they provide a good introductory base of knowledge to build on.
{{dablink|This '''page''' is only for Plugin Development, please see the main page [[Developers]] for other development topics}}<noinclude>[[Category:Landing subpages|{{PAGENAME}}]]</noinclude>
+
{{tip|{{Chunk:Plugin/en}}|title=What is a Plugin?}}<noinclude>[[Category:Landing subpages|{{PAGENAME}}]]</noinclude>

Revision as of 13:09, 24 February 2014

This page contains many links to documentation concerning Plugin Development for Joomla 2.5 and Joomla 3.x. A good place to start is with the Recommending Reading articles below as they provide a good introductory base of knowledge to build on.

What is a Plugin?

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 Joomla. 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 JEventDispatcher class is an event handler which calls all plugins registered for a particular event, when that event is triggered. In Joomla 4.x this has been moved to the \Joomla\Event\Dispatcher class in Joomla, and additionally follows the Mediator design pattern

See also: Component, Module, Template