function drupalgap_menu in DrupalGap 6
Same name and namespace in other branches
- 8.2 drupalgap.module \drupalgap_menu()
- 7.2 drupalgap.module \drupalgap_menu()
- 7 drupalgap.module \drupalgap_menu()
- 8.0.x drupalgap.module \drupalgap_menu()
Implements hook_menu().
File
- ./
drupalgap.module, line 23 - A module to provide a bridge between Drupal websites and PhoneGap mobile applications.
Code
function drupalgap_menu() {
$items = array();
$items['admin/settings/drupalgap'] = array(
'title' => 'DrupalGap',
'description' => 'The status of DrupalGap.',
'page callback' => 'drupalgap_status',
'access arguments' => array(
'administer drupalgap',
),
'file' => 'drupalgap.pages.inc',
);
return $items;
}