You are here

function views_watchdog_help in Views Watchdog 7.3

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.4 views_watchdog.module \views_watchdog_help()

Implements hook_help().

File

./views_watchdog.module, line 13
This module extends the Views module and allows to create customized lists (pages, blocks, feeds) of watchdog 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 <a href="@views">Views</a> module and allows to create customized lists (pages, blocks, feeds) of watchdog entries. For more information, see the online handbook entry for <a href="@views_watchdog">Views Watchdog module</a>.', array(
        '@views' => 'http://drupal.org/project/views',
        '@views_watchdog' => 'http://drupal.org/project/views_watchdog',
      )) . '</p>';
      return $output;
  }
}