function mobile_navigation_menu in Mobile Navigation 8
Same name and namespace in other branches
- 7.2 mobile_navigation.module \mobile_navigation_menu()
- 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;
}