/ Published in: PHP
URL: http://drupal.org/node/143322#comment-1354474
This snippet allows admins to create menu items which do not link anywhere. This is most useful in situations where one wants to have dropdown menus where the parent item should not be a link.
This same method could be used to create non-linking menu divider/headings.
Use http://fake.link for every menu item that should not be linkable.
Also, consider using http://drupal.org/project/specialmenuitems to provide this capability.
Expand |
Embed | Plain Text
<?php function THEMENAME_menu_item_link($link) { } return '<a href="javascript:void(0)" onclick="return false" class="nolink">'. $link['title'] .'</a>'; } else { return l($link['title'], $link['href'], $link['localized_options']); } } ?>
You need to login to post a comment.
