function email_confirm_help in Email Change Confirmation 6
Same name and namespace in other branches
- 5 email_confirm.module \email_confirm_help()
- 7 email_confirm.module \email_confirm_help()
Implementation of hook_help().
File
- ./
email_confirm.module, line 6
Code
function email_confirm_help($path, $arg) {
switch ($path) {
case 'admin/modules#description':
return t('Configuration of confirmation email sent to users who attempt to change their email address.');
case 'admin/help#email_confirm':
return t('<p>The Email Change Confirmation module addresses missing functionality in the core distribution of Drupal. With this module enabled, a user who attempts to change the email address associated with their account must confirm that change by clicking a confirmation link that is sent to the new email address. The confirmation link must be clicked with a certain time period after which the pending update to their email address will expire and they will have to attempt to update their account again. This module was based on code from <a href="!url">this issue</a></p>', array(
'!url' => 'http://drupal.org/node/85494',
));
case 'admin/settings/email_confirm':
return t('When the Email Change Confirmation module is enabled, users who attempt to update their email address will be required to confirm their changes by clicking a confirmation link in an email sent to the new email address. The settings below determine the subject and body of the confirmation email sent to the user. A copy is sent to both the user\'s original email address and the new address.');
}
}