Difference between revisions of "OnModuleRender"

(Created page with "===Description === Allow plugin to add any HTML code into any module position. @since 2.0 ===Params=== *'''null''' ===Returns=== *'''Array of modules''' <syntaxhighlight la...")
 
(No difference)

Latest revision as of 14:56, 18 January 2013

Description

Allow plugin to add any HTML code into any module position.

@since 2.0

Params

  • null

Returns

  • Array of modules
$module = array (
                              0 => array(position => content),
                              1 => array(position => content) 
 
                           )


Example

function onModuleRender(&$rows) 
{
   /*
      Loop module with any html code here.
   */
 
}