Joomla : how to get the url of a specific Menu itemID?(Joomla:如何获取特定菜单项 ID 的 url?)
问题描述
朋友一个新手问题.........我需要帮助来获取特定菜单项 ID 的 URL.情况是这样的:
Friends a newbie question.........I need help in getting the URL of a specific Menu itemID. The situation is like this:
我正在运行 Joomla 并要求用户输入菜单 ID 并为该菜单 ID 选择布局.
I am running Joomla and asking for a user to input for a menu ID and choose a layout for that menu ID.
我想用 Menu itemID 的这个 URL 做一些其他的事情.
I want to do something else with this URL of the Menu itemID.
如何获取用户提供的这个Menu itemID的URL?
How can I get the URL of this Menu itemID provided by the user?
例如,如果用户输入是liek $this->get ('menulayoutid'>;
并且他输入和ID 54
那么我如何得到菜单 ID 54 的 URL.
For Example if the user input is liek $this->get ('menulayoutid'>;
and he inputs and ID of 54
then how do I get the URL for Menu ID 54.
请注意:我想从我的 PHP 文件中而不是在浏览器中获取此 URL,以便我可以将该 URL 的值用于其他目的.
Please note: I want to get this URL from within my PHP file and not in the browser so that I can use the value of that URL for some other purpose.
请帮忙.
推荐答案
$itemid = JRequest::getVar('Itemid');
$application = JFactory::getApplication();
$menu = $application->getMenu();
$item = $menu->getItem($itemid);
$link = new JURI($item->link);
$link->setVar('ItemId', $itemid);
来源:http://forum.joomla.org/viewtopic.php?p=1836005
这篇关于Joomla:如何获取特定菜单项 ID 的 url?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Joomla:如何获取特定菜单项 ID 的 url?
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01