Prova il codice qui sotto.
<?php
if ($module->showtitle)
{
echo '<h2>' .$module->title .'</h2>';
}
?>
È possibile accedere alle seguenti cose.
stdClass Object
(
[id] => 18
[title] => Login Form
[module] => mod_login
[position] => left
[content] =>
[showtitle] => 1
[control] =>
[params] => greeting=1
name=0
[user] => 0
[name] => login
[style] =>
)
Riferimento Joomla URL:
1. http://docs.joomla.org/JModuleHelper/getModule
2. http://docs.joomla.org/Customising_the_way_modules_are_displayed
aggiornamenti - 22 ° dic 2016
È possibile utilizzare jimport
per ottenere il modulo.
jimport('joomla.application.module.helper');
$module = JModuleHelper::getModule('login'); // Single
$module = JModuleHelper::getModule('mainmenu', 'Resources'); // Multiple
fonte
2013-06-26 09:51:47
+1 per fornire collegamenti molto utili. Grazie! –