You are here

function views_watchdog_help in Views Watchdog 7.4

Same name and namespace in other branches
  1. 6.3 views_watchdog.module \views_watchdog_help()
  2. 6.2 views_watchdog.module \views_watchdog_help()
  3. 7.3 views_watchdog.module \views_watchdog_help()

Implements hook_help().

File

./views_watchdog.module, line 12
Extends the Views module and allows to create custom lists of log entries.

Code

function views_watchdog_help($path, $arg) {
  switch ($path) {
    case 'admin/help#views_watchdog':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Views Watchdog module extends the Views module and allows to create custom lists of log entries. For more information, see the online handbook entry for <a href="@views_watchdog">Views Watchdog module</a>.', array(
        '@views_watchdog' => 'https://www.drupal.org/project/views_watchdog',
      )) . '</p>';
      return $output;
  }
}