You are here

function mobile_navigation_menu in Mobile Navigation 8

Same name and namespace in other branches
  1. 7.2 mobile_navigation.module \mobile_navigation_menu()
  2. 7 mobile_navigation.module \mobile_navigation_menu()

Implements hook_menu().

File

./mobile_navigation.module, line 91
Mobile Navigation primary module file.

Code

function mobile_navigation_menu() {
  $items['admin/config/user-interface/mobile-navigation'] = array(
    'title' => 'Mobile Navigation',
    'description' => 'Mobile Navigation configuration.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'mobile_navigation_configuration_form',
    ),
    'access arguments' => array(
      'administer mobile navigation',
    ),
    'file' => 'mobile_navigation.admin.inc',
  );
  return $items;
}