====== getModule ====== {#JAPI Joomla.Framework Application JModuleHelper::getModule #} Get a module by name ===== Syntax ===== object &getModule ( **$name** ) | **$name** | string | The name of the module w/o the 'mod_' prefix | ===== Examples ===== $module = &JModuleHelper::getModule('banners'); echo JModuleHelper::renderModule($module); The example might render the following HTML snippet:
custom banner text
This is essentially the same as using %%%% in the site template. ---- ~~DISCUSSION~~