function recovery_pass_help in Recovery Password (Email New Password) 7
Same name and namespace in other branches
- 8 recovery_pass.module \recovery_pass_help()
Implements hook_help().
File
- ./
recovery_pass.module, line 10 - Alters default Drupal password recovery process by overriding default submit.
Code
function recovery_pass_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#recovery_pass':
$output = file_get_contents(drupal_get_path('module', 'recovery_pass') . '/README.txt');
}
return $output;
}