You are here

function nodesymlinks_menu_title in NodeSymlinks 6

Same name and namespace in other branches
  1. 7 nodesymlinks.module \nodesymlinks_menu_title()

Title callback for the menu overview page and links.

1 string reference to 'nodesymlinks_menu_title'
nodesymlinks_menu in ./nodesymlinks.module
Implementation of hook_menu().

File

./nodesymlinks.module, line 83
Node Symlinks allows creating duplicate menu links with unique id to all nodes. As a result all these duplicates have unique menu trails and breadcrumbs.

Code

function nodesymlinks_menu_title($node) {
  return $node->title;
}