I would like to add pipes ("|") between menu items for one of the menus on my Drupal 7 site (theme name is "thompson"). I figured the best way to do this is to create a function in my template.php file called thompson_menu_link. I did that and it is successfully modifying the menus, but it's changing all the menus. Is there a way I can do this for just one menu on my site?

Currently, I used the admin pages to add my footer menu (url path: menu-footer-menu) to the Footer block. Should I call it a different way?

link|improve this question

The part you added about the solution you adopted should be written as answer. If you wrote that as answer, I would up-vote it. :-) – kiamlaluno Aug 29 '11 at 11:46
Sorry, new here. Didn't know if it was bad form to answer my own question and accept it. – Brett F Aug 29 '11 at 14:19
feedback

2 Answers

up vote 1 down vote accepted

I've messed with the thompson_menu_link() function a bit. I don't like how I did it, but it got the job done. Basically, it reads in the menu name, and uses a conditional to return the <li> element with a pipe afterward. Here's the whole block:

function thompson_menu_link(array $variables) {
  $element  = $variables['element'];
  $menuName = $variables['element']["#original_link"]["menu_name"];
  $sub_menu = '';

  if ($element['#below']) {
    $sub_menu = drupal_render($element['#below']);
  }

  $output = l($element['#title'], $element['#href'], $element['#localized_options']);

  if ($menuName == "menu-footer-menu" && !in_array("last",$element['#attributes']['class']) {
    $finalString = '<li' . drupal_attributes($element['#attributes']) . '>' . $output . $sub_menu . "</li>|\n";
  }
  else {
    $finalString = '<li' . drupal_attributes($element['#attributes']) . '>' . $output . $sub_menu . "</li>\n";
  }

  return $finalString;
}
link|improve this answer
feedback

the best way you can make it is installing the following module:

http://drupal.org/project/menu_attributes

This module lets you add special classes to some menu entries, so you just have to add a class rightpipe and define that class like:

.rightpipe { border-right: 1px solid black }

or

.rightpipe { background: url(1pixel_line_separator.png) no-repeat center right }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.