You are here

function gauth_login_menu in Google Auth 7

Same name and namespace in other branches
  1. 7.2 gauth_login/gauth_login.module \gauth_login_menu()

Implements hook_menu().

File

gauth_login/gauth_login.module, line 26
Google Auth Api for drupal.

Code

function gauth_login_menu() {
  $items = array();
  $items['admin/config/services/gauth_login'] = array(
    'title' => 'Google Login Settings',
    'description' => 'Google Login settings.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'gauth_login_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'gauth_login.admin.inc',
  );
  return $items;
}