function emaillog_help in Logging and alerts 6
Same name and namespace in other branches
- 8 emaillog/emaillog.module \emaillog_help()
- 6.2 emaillog/emaillog.module \emaillog_help()
- 7.2 emaillog/emaillog.module \emaillog_help()
- 7 emaillog/emaillog.module \emaillog_help()
- 2.0.x emaillog/emaillog.module \emaillog_help()
Implementation of hook_help().
File
- emaillog/
emaillog.module, line 13 - Sends logs and alerts to email addresses.
Code
function emaillog_help($path, $arg) {
switch ($path) {
case 'admin/help#emaillog':
case 'admin/settings/logging/emaillog':
return '<p>' . t('Sends logs and alerts to email addresses.') . '</p>';
}
}