我有一个我现在正在做的项目。
我在 Joomla 中开发了它,在索引页面上,我有一个显示年份的菜单。
我需要知道如何编写一个 php 变量来获取此菜单的活动项名称,以便我可以echo
在我想要的位置显示 ()。
请参阅随附的屏幕截图。
最简单的方法和坚持 Joomla 编码标准如下:
$menu = JFactory::getApplication()->getMenu();
$title = $menu->getActive()->title;
echo $title;
这应该工作
$currentMenuId = JSite::getMenu()->getActive()->id ;
姓名:
JSite::getMenu()->getActive()->name;
或这个
$menu = &JSite::getMenu();
$active = $menu->getActive();
$path = isset($active) ? array_reverse($active->tree) : null;
$thisPath = $path[(count($path)-1)];
echo $thisPath; //echo active menu id