OnModuleRender

Revision as of 14:56, 18 January 2013 by Sinisakrisan (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.
   */
 
}