You are here

function special_menu_items_dummy in Special menu items 6

Page callback

1 string reference to 'special_menu_items_dummy'
special_menu_items_menu in ./special_menu_items.module
Implementation of hook_menu()

File

./special_menu_items.module, line 53
Module to enable placeholder or separator menu items.Placeholder is a menu item which is actually not a link. Something like this is useful with drop down menus where we want to have a parent link which is actually not linking to a page but which is…

Code

function special_menu_items_dummy() {
  $output = 'This is a dummy page used for placeholder and separator menu items. You should not be able to see this page';
  return t($output);
}