You are here

function views_revisions_help in Views Revisions 6

Same name and namespace in other branches
  1. 7 views_revisions.module \views_revisions_help()

Implements hook_help().

File

./views_revisions.module, line 11
A module to provide revisions of Views.

Code

function views_revisions_help($path, $arg) {
  switch ($path) {
    case 'admin/help#views_revisions':
      return "<p>" . l('View README.txt', drupal_get_path('module', 'views_revisions') . '/README.txt') . "</p>";
      break;
  }
}