您好我想在我的外部页面上显示joomla菜单这里是我在外部php文件上的代码,有没有其他方法可以做同样的事情,提前感谢您的帮助。
define( '_JEXEC', 1 );
define('JPATH_BASE', dirname(__FILE__).'/../' ); // should point to joomla root
define( 'DS', DIRECTORY_SEPARATOR );
require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );
$mainframe =& JFactory::getApplication('site');
$mainframe->initialise();
jimport( 'joomla.application.module.helper' );
$module = JModuleHelper::getModules('xxxx');
echo JModuleHelper::renderModule($module[0]);