function sharedemail_help in Shared Email 6
Same name and namespace in other branches
- 8.2 sharedemail.module \sharedemail_help()
- 5 sharedemail.module \sharedemail_help()
- 7 sharedemail.module \sharedemail_help()
Implementation of hook_help().
File
- ./
sharedemail.module, line 11 - Allows users to share an email address
Code
function sharedemail_help($path, $arg) {
switch ($path) {
case 'admin/help#sharedemail':
$output = '<p>' . t('Allows users to use the same email address for multiple accounts') . '</p>';
return $output;
}
}