You are here

function emaillog_help in Logging and alerts 7.2

Same name and namespace in other branches
  1. 8 emaillog/emaillog.module \emaillog_help()
  2. 6.2 emaillog/emaillog.module \emaillog_help()
  3. 6 emaillog/emaillog.module \emaillog_help()
  4. 7 emaillog/emaillog.module \emaillog_help()
  5. 2.0.x emaillog/emaillog.module \emaillog_help()

Implements hook_help().

File

emaillog/emaillog.module, line 16
Drupal Module: Email Logging and Alerts

Code

function emaillog_help($path, $arg) {
  switch ($path) {
    case 'admin/help#emaillog':
      return '<p>' . t('Sends logs and alerts to email addresses, with different severity going to different emails.') . '</p>';
    case 'admin/reports/dblog':
      return '<p>' . t('Sends logs and alerts to email addresses, with different severity going to different emails.') . '</p>';
  }
}