You are here

function log_clear_help in Util 6.3

Same name and namespace in other branches
  1. 6.2 contribs/log_clear/log_clear.module \log_clear_help()

Implementation of hook_help().

File

contribs/log_clear/log_clear.module, line 12
Adds a clearing function to "Recent log" report. Requires 'access site reports' permission.

Code

function log_clear_help($path, $args) {
  switch ($path) {
    case 'admin/reports/dblog':
      return '<p>' . t('Within the "Filter log messages" field set there is a button that you may use to clear selected entries.') . '</p>';
  }
}