You are here

function errorlog_help in Logging and alerts 7

Same name and namespace in other branches
  1. 8 errorlog/errorlog.module \errorlog_help()
  2. 6.2 errorlog/errorlog.module \errorlog_help()
  3. 6 errorlog/errorlog.module \errorlog_help()
  4. 7.2 errorlog/errorlog.module \errorlog_help()
  5. 2.0.x errorlog/errorlog.module \errorlog_help()

Implements hook_help().

File

errorlog/errorlog.module, line 16
Drupal Module: Web Server Logging and Alerts

Code

function errorlog_help($path, $arg) {
  switch ($path) {
    case 'admin/help#errorlog':
    case 'admin/reports/errorlog':
      return '<p>' . t('Sends logs and alerts to the web server\'s error log.') . '</p>';
  }
}