You are here

function emaillog_help in Logging and alerts 6

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

Implementation of hook_help().

File

emaillog/emaillog.module, line 13
Sends logs and alerts to email addresses.

Code

function emaillog_help($path, $arg) {
  switch ($path) {
    case 'admin/help#emaillog':
    case 'admin/settings/logging/emaillog':
      return '<p>' . t('Sends logs and alerts to email addresses.') . '</p>';
  }
}