Drupal:菜单项标记?

发布于 2024-09-08 11:08:15 字数 134 浏览 3 评论 0原文

我需要添加带有以下链接的菜单项: user/16/addresses

它是指向用户配置文件选项卡的链接。当然16是用户ID,它应该根据用户而改变。

我可以直接在菜单项中使用令牌吗?例如 [uid] ?

谢谢

I need to add a menu item with the following link: user/16/addresses

It is the link to a tab of user profiles. Of course 16 is the user ID and it should change according to the user.

Can I use tokens directly into menu items ? such as [uid] ?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最舍不得你 2024-09-15 11:08:15

hook_menu() 为您完成大部分工作。

function example_menu() {
  return array(
  'user/%/addressess' => array(
      'title' => 'User Addresses',
      'page callback' => 'example_callback',
      'page arguments' => array(1),
      'weight' => 2,
      'type' => MENU_LOCAL_TASK,
    ),
  );
 }

当您位于用户页面上并将 UID 放入 URL 时,这将添加选项卡。

据我了解, MENU_LOCAL_TASK 工作于当前 URL,因此您无法用此替换另一个 USER id 到菜单中。

hook_menu() does most of the work for you with this.

function example_menu() {
  return array(
  'user/%/addressess' => array(
      'title' => 'User Addresses',
      'page callback' => 'example_callback',
      'page arguments' => array(1),
      'weight' => 2,
      'type' => MENU_LOCAL_TASK,
    ),
  );
 }

This will add the tab when you are on a user page and put the UID in the URL.

As I understand it the MENU_LOCAL_TASK works off the current URL, so you couldn't substitute another USER id into the menu with this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文