function errorlog_help in Logging and alerts 2.0.x
Same name and namespace in other branches
- 8 errorlog/errorlog.module \errorlog_help()
- 6.2 errorlog/errorlog.module \errorlog_help()
- 6 errorlog/errorlog.module \errorlog_help()
- 7.2 errorlog/errorlog.module \errorlog_help()
- 7 errorlog/errorlog.module \errorlog_help()
Implements hook_help().
File
- errorlog/
errorlog.module, line 17 - Drupal Module: Web Server Logging and Alerts.
Code
function errorlog_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'errorlog.configuration':
return '<p>' . t('Sends logs and alerts to the web server\'s error log.') . '</p>';
}
}