如何阅读 helper.php (Joomla 3) 中的模块标题?
How to read the module title in helper.php (Joomla 3)?
我想在 helper.php.
的函数中获取模块的标题
$module->title
无效。
我可以在 mod_xxx.php 中读取 $module->title,但我需要在辅助文件中使用它。如何阅读模块标题?
谢谢
差距
很久以前我用过大约。 1 年有效,试试这个:
$module = JModuleHelper::getModule('mod_countdown');
$moduleParams = new JRegistry($module->params);
print_r($module->title);
我想在 helper.php.
的函数中获取模块的标题$module->title
无效。
我可以在 mod_xxx.php 中读取 $module->title,但我需要在辅助文件中使用它。如何阅读模块标题?
谢谢 差距
很久以前我用过大约。 1 年有效,试试这个:
$module = JModuleHelper::getModule('mod_countdown');
$moduleParams = new JRegistry($module->params);
print_r($module->title);