You are here

function drupalgap_menu in DrupalGap 6

Same name and namespace in other branches
  1. 8.2 drupalgap.module \drupalgap_menu()
  2. 7.2 drupalgap.module \drupalgap_menu()
  3. 7 drupalgap.module \drupalgap_menu()
  4. 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;
}