在模板外加载模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在模板外加载模块相关的知识,希望对你有一定的参考价值。
<?php require_once(JPATH_ROOT.DS.'libraries'.DS.'joomla'.DS.'application'.DS.'module'.DS.'helper.php'); $document =& JFactory::getDocument(); $renderer = $document->loadRenderer('module'); $db =& JFactory::getDBO(); $db->setQuery("SELECT * FROM #__modules WHERE position='positionname' AND published=1 ORDER BY ordering"); $modules = $db->loadObjectList(); { foreach( $modules as $module ) { //just to get rid of that stupid php warning $module->user = ''; echo $renderer->render($module, $params); } }
以上是关于在模板外加载模块的主要内容,如果未能解决你的问题,请参考以下文章