Plugin/Events/Module/nl: Difference between revisions
From Joomla! Documentation
Created page with "=== Beschrijving ===" |
Created page with "Dit is een event dat wordt aangeroepen wanneer een module op de front- of back-end wordt gerenderd." |
||
| Line 4: | Line 4: | ||
==onRenderModule== | ==onRenderModule== | ||
=== Beschrijving === | === Beschrijving === | ||
Dit is een event dat wordt aangeroepen wanneer een module op de front- of back-end wordt gerenderd. | |||
===Parameters=== | ===Parameters=== | ||
*<code>&module</code> A reference to a Module object that holds all the data of the module | *<code>&module</code> A reference to a Module object that holds all the data of the module | ||
Revision as of 19:37, 16 June 2016
In een standaard Joomla! installatie zijn er meerdere events voor modules. Deze roepen, wanneer opdragen wordt, functies aan in bijbehorende plugins.
onRenderModule
Beschrijving
Dit is een event dat wordt aangeroepen wanneer een module op de front- of back-end wordt gerenderd.
Parameters
&moduleA reference to a Module object that holds all the data of the module&attribsAn array of attributes for the module
Return Value
None. Result will be omitted.
onAfterRenderModule
Description
This is an event that is called when after a module is rendered on the back- or front-end
Parameters
&moduleA reference to a Module object that holds all the data of the module&attribsAn array of attributes for the module
Return Value
None. Result will be omitted.
onPrepareModuleList
Description
This is an even that is called before the list of modules that must be rendered is created. If the &modules parameter is an array of module objects, the default module list generated by Joomla! is ignored.
Parameters
&modulesReference to a empty variable for the list of modules
Return Value
None. Result will be omitted.
onAfterModuleList
Description
This is an even that is called after the list of modules that must be rendered is created.
Parameters
&modulesReference to an array of module objects
Return Value
None. Result will be omitted.
onAfterCleanModuleList
Description
This is an event that is called after the module list is cleaned.
Parameters
&modulesA reference to an array of rendered module objects
Return Value
None. Result will be omitted.