Joomla : how to get the url of a specific Menu itemID?

后端 未结 5 1490
夕颜
夕颜 2020-12-16 06:47

Friends a newbie question.........I need help in getting the URL of a specific Menu itemID. The situation is like this:

I am running Joomla and asking for a user to

5条回答
  •  春和景丽
    2020-12-16 07:16

    $itemid = JRequest::getVar('Itemid');
    $application = JFactory::getApplication();
    $menu = $application->getMenu();
    $item = $menu->getItem($itemid);
    $link = new JURI($item->link);
    $link->setVar('ItemId', $itemid);
    

    Source: http://forum.joomla.org/viewtopic.php?p=1836005

提交回复
热议问题