function mass_pwreset_help in Mass Password Reset 7
Same name and namespace in other branches
- 8 mass_pwreset.module \mass_pwreset_help()
- 2.x mass_pwreset.module \mass_pwreset_help()
Implements hook_help().
File
- ./
mass_pwreset.module, line 11 - Reset user passwords and optionally notify users.
Code
function mass_pwreset_help($path, $arg) {
switch ($path) {
case 'admin/people/mass-pwreset':
return '<p><strong>' . t('Use this form with caution.') . '</strong></p>' . '<p>' . t('This form will reset the passwords of all users except the administrative superuser id 1. You can optionally reset the administrative superuser id 1. Once passwords have been reset, users will optionally receive emails using the Drupal password recovery email. The password recovery email content can be edited at the <a href="@url">account settings configuration page</a>.', array(
'@url' => url("admin/config/people/accounts"),
)) . '</p>';
}
}