You are here

function user_register_notify_menu in User registration notification 7

Same name and namespace in other branches
  1. 6 user_register_notify.module \user_register_notify_menu()

Implements hook_menu().

File

./user_register_notify.module, line 21
Installation file for the user_register_notify module.

Code

function user_register_notify_menu() {
  $items['admin/config/people/user-register-notify'] = array(
    'title' => 'User registration notification',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'user_register_notify_admin_settings_form',
    ),
    'description' => 'Configure the User Registration Notification module.',
    'file' => 'user_register_notify.admin.inc',
    'access arguments' => array(
      'administer site configuration',
    ),
  );
  return $items;
}