joomla 3,如何获取模块模板中的样式参数

时间:2014-03-08 11:18:56

标签: php templates joomla

请告诉我如何从模块模板中的templateDetails.xml获取参数,例如位于:templates / beez3 / html / com_content / article / default.php?

我可以在index.php文件中获取这些参数(templates / beez3 / index.php),但我想在templates / beez3 / html / com_content / article / default.php中获取它。

也许我错误地提出了问题。我需要获取在管理面板中设置的模板的样式设置。我怎么能得到它们?

1 个答案:

答案 0 :(得分:2)

$template = JFactory::getApplication()->getTemplate(true);

将为您提供当前模板参数的对象。