function user_register_notify_help in User registration notification 7
Same name and namespace in other branches
- 6 user_register_notify.module \user_register_notify_help()
Implements hook_help().
File
- ./
user_register_notify.module, line 11 - Installation file for the user_register_notify module.
Code
function user_register_notify_help($path, $arg) {
switch ($path) {
case 'admin/help/user_register_notify':
return t('This module provides a way for an administrator to get an email when a user account is created. It assumes that the Drupal mailer is configured.');
}
}