0

我正在尝试在菜单项的“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 是自定义的(显然)并且工作正常。

4

1 回答 1

0

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

于 2009-05-02T02:51:13.547 回答