function navigation404_menu in 404 Navigation 7
Implements hook_menu().
File
- ./
navigation404.module, line 7
Code
function navigation404_menu() {
$items[NAVIGATION404_PAGE] = array(
'title' => 'Page not found',
'access callback' => TRUE,
'page callback' => 'navigation404_404_page',
'type' => MENU_CALLBACK,
);
return $items;
}