function user_register_notify_help in User registration notification 6
Same name and namespace in other branches
- 7 user_register_notify.module \user_register_notify_help()
Implementation of hook_help().
File
- ./
user_register_notify.module, line 12 - Notifies administrator of new user registrations.
Code
function user_register_notify_help($path, $arg) {
if ($path == 'admin/help#user_register_notify') {
return '<p>' . 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.') . '</p>';
}
}