function show_email_help in Show Email Address 7
Same name and namespace in other branches
- 8 show_email.module \show_email_help()
Implements hook_help().
File
- ./
show_email.module, line 27 - Basically show the user's registered email address.
Code
function show_email_help($path, $arg) {
switch ($path) {
case 'admin/help#show_email':
return '<p>' . t('This small module is to show the email address in user page.') . '</p>';
}
}