function user_register_notify_menu in User registration notification 6
Same name and namespace in other branches
- 7 user_register_notify.module \user_register_notify_menu()
Implementation of hook_menu().
File
- ./
user_register_notify.module, line 31 - Notifies administrator of new user registrations.
Code
function user_register_notify_menu() {
$items['admin/settings/register_notify'] = array(
'title' => 'User registration notification',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'user_register_notify_settings',
),
'description' => 'Configure the User Registration Notification module.',
'file' => 'user_register_notify.admin.inc',
'access arguments' => array(
'administer site configuration',
),
);
return $items;
}