Drupal 中菜单项的“a”标签上的唯一 ID

问题描述 投票:0回答:1

我正在尝试在菜单项的“a”标签上生成唯一的 id,以便我可以实现 Popups API。

这就是我在 template.php 中的函数的样子:

function phptemplate_menu_item_link($link) {
  if (empty($link['options'])) {
    $link['options'] = array();
  }

  // If an item is a LOCAL TASK, render it as a tab
  if ($link['type'] & MENU_IS_LOCAL_TASK) {
    $link['title'] = '<span class="tab">'. check_plain($link['title']) .'</span>';
    $link['options']['html'] = TRUE;
  }

  if (empty($link['type'])) {
    $true = TRUE;
  }

  //get unique id from menu item title
  $css_id = phptemplate_id_safe(str_replace(' ', '_', strip_tags($link['title'])));

  //set unique id for link
  if ($link['menu_name'] == 'primary-links') {
    $link['options']['attributes']['id'] = 'id-' . $css_id;
  }

  return l($link['title'], $link['href'], $link['options']);
}

我正在使用 Zend 进行调试,并且条件语句有效。我已经清除了缓存、浏览器缓存,并多次重建了菜单,但似乎无法让它工作。

作为参考,phptemplate_id_safe 是自定义的(显然)并且工作正常。

php drupal drupal-6 menuitem
1个回答
0
投票

您可能想查看 menu_attributes 或 此论坛帖子

© www.soinside.com 2019 - 2024. All rights reserved.