function errorlog_help in Logging and alerts 7.2
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 errorlog/errorlog.module \errorlog_help()
- 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>';
}
}