You are here

function sms_user_menu in SMS Framework 7

Same name and namespace in other branches
  1. 5 modules/sms_user/sms_user.module \sms_user_menu()
  2. 6.2 modules/sms_user/sms_user.module \sms_user_menu()
  3. 6 modules/sms_user/sms_user.module \sms_user_menu()

Implements hook_menu().

File

modules/sms_user/sms_user.module, line 36
Provides integration between the SMS Framework and Drupal users.

Code

function sms_user_menu() {
  $items = array();
  $items['admin/smsframework/sms_user_options'] = array(
    'title' => 'SMS User Options',
    'description' => 'Edit options for SMS and user integration.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'sms_user_admin_settings',
    ),
    'access arguments' => array(
      'administer smsframework',
    ),
    'file' => 'sms_user.admin.inc',
  );
  return $items;
}