You are here

function any_menu_path_menu in Any Menu Path 7

Implements hook_menu().

File

./any_menu_path.module, line 22
Allows to add menu paths that don't exist on the site.

Code

function any_menu_path_menu() {
  $items['admin/config/content/any_menu_path'] = array(
    'title' => 'Any Menu Path Override Listing',
    'page callback' => 'any_menu_path_view_paths',
    'description' => 'Administer the Any Menu Paths module.',
    'access arguments' => array(
      'administer any_menu_path',
    ),
  );
  return $items;
}