You are here

function filelog_ui_help in File Log 6.2

Implementation of hook_help().

File

./filelog_ui.module, line 6
Viewer UI for file based logging.

Code

function filelog_ui_help($path, $arg) {
  switch ($path) {
    case 'admin/help#filelog_ui':
      $output = '<p>' . t('The file logging module monitors your system, capturing system events in log files to be reviewed by an authorized individual at a later time. This is useful for site administrators who want a quick overview of activities on their site. The logs also record the sequence of events, so it can be useful for debugging site errors.') . '</p>';
      $output .= '<p>' . t('Each log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. Administrators should check the reports on a regular basis to ensure their site is working properly.') . '</p>';

      //$output .= '<p>'. t('For more information, see the online handbook entry for <a href="@dblog">Dblog module</a>.', array('@dblog' => 'http://drupal.org/handbook/modules/dblog/')) .'</p>';
      return $output;
  }
}