function sharedemail_help in Shared Email 7
Same name and namespace in other branches
- 8.2 sharedemail.module \sharedemail_help()
- 5 sharedemail.module \sharedemail_help()
- 6 sharedemail.module \sharedemail_help()
Implements hook_help().
File
- ./
sharedemail.module, line 11 - Allow an e-mail address to be used by more than one user account.
Code
function sharedemail_help($path, $arg) {
switch ($path) {
case 'admin/help#sharedemail':
$output = '<p>' . t('Allow an e-mail address to be used by more than one user account.') . '</p>';
return $output;
}
}