You are here

function errorlog_help in Logging and alerts 8

Same name and namespace in other branches
  1. 6.2 errorlog/errorlog.module \errorlog_help()
  2. 6 errorlog/errorlog.module \errorlog_help()
  3. 7.2 errorlog/errorlog.module \errorlog_help()
  4. 7 errorlog/errorlog.module \errorlog_help()
  5. 2.0.x 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>';
  }
}