function menu_firstchild_menu in Menu Firstchild 7
Same name and namespace in other branches
- 6 menu_firstchild.module \menu_firstchild_menu()
 
Implementation of hook_menu().
File
- ./
menu_firstchild.module, line 17  - menu_firstchild.module Main file for the menu_firstchild module.
 
Code
function menu_firstchild_menu() {
  $items['<firstchild>'] = array(
    'page callback' => '_menu_firstchild_menu',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  return $items;
}