Difference between revisions of "Plugin/ca"

From Joomla! Documentation

(Created page with "Si té un plugin bàsic de contingut amb un mòdul o component personalitzat, recomanem llegir activant connectors de contingut en la seva extensió.")
Line 10: Line 10:
 
Per entendre millor els plugins, tindria queveure [[S:MyLanguage/Creating_a_Plugin_for_Joomla|crear un plugin bàsic a Joomla!]].
 
Per entendre millor els plugins, tindria queveure [[S:MyLanguage/Creating_a_Plugin_for_Joomla|crear un plugin bàsic a Joomla!]].
  
Si té un plugin bàsic de contingut amb un mòdul o component personalitzat, recomanem llegir activant connectors de contingut en la seva extensió.
+
Si té un plugin bàsic de contingut amb un mòdul o component personalitzat, recomanem llegir [[S:MyLanguageTriggering content plugins in your extension|activant connectors de contingut en la seva extensió]].
  
 
===Advanced===
 
===Advanced===

Revision as of 19:05, 15 May 2015

Other languages:
Bahasa Indonesia • ‎Deutsch • ‎English • ‎Kiswahili • ‎Nederlands • ‎català • ‎eesti • ‎español • ‎français • ‎italiano • ‎português • ‎português do Brasil • ‎български • ‎中文(台灣)‎ • ‎日本語

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


Aprèn-ne més

Novell

Per comprendre com instal·lar i utilitzar un plugin amb Joomla es recomana llegir l'article Administració d'un plugin a Joomla

Intermedi

Per entendre millor els plugins, tindria queveure crear un plugin bàsic a Joomla!.

Si té un plugin bàsic de contingut amb un mòdul o component personalitzat, recomanem llegir activant connectors de contingut en la seva extensió.

Advanced

To understand the principles on which the Plugin system works Plugin Developer Overview. To then implement this in a component you have designed it is recommended to read Supporting plugins in your component.

Usant complements

Plugins are grouped together depending on which event they run on. For developer reference there is a full list of plugins grouped by their event type. Please note, the names of a lot of events changed between the Joomla 1.5 and Joomla 2.5 versions. Here is a full list of the 1.5 to 2.5 plugin event name changes. There are also several simple tutorials on making some sample plugins running on some of these events to help running searches on extensions using both the search and smart search components:

There are further tutorials using the user triggers on how to create an authentication plugin to help users log into Joomla and creating a profile plugin for Joomla.

A more complex example of using plugins to create a new system router to produce URLs is also available (Joomla 2.5 only).