function emaillog_help in Logging and alerts 2.0.x
Same name and namespace in other branches
- 8 emaillog/emaillog.module \emaillog_help()
- 6.2 emaillog/emaillog.module \emaillog_help()
- 6 emaillog/emaillog.module \emaillog_help()
- 7.2 emaillog/emaillog.module \emaillog_help()
- 7 emaillog/emaillog.module \emaillog_help()
Implements hook_help().
File
- emaillog/
emaillog.module, line 20 - Drupal Module: Email Logging and Alerts.
Code
function emaillog_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'emaillog.configuration':
return '<p>' . t('Sends logs and alerts to email addresses, with different severity going to different emails.') . '</p>';
}
}