You are here

function global_filter_help in Views Global Filter 6

Same name and namespace in other branches
  1. 8 global_filter.module \global_filter_help()
  2. 7 global_filter.module \global_filter_help()

Implements hook_help().

File

./global_filter.module, line 18
global_filter.module

Code

function global_filter_help($path, $arg) {
  switch ($path) {
    case 'admin/help#global_filter':
      $t = t('Configuration and usage instructions are in this <a href="@README">README.txt</a> file.<br/>Known issues and solutions may be found on the <a href="@global_filter">Global Filter</a> project page.', array(
        '@README' => url(drupal_get_path('module', 'global_filter') . '/README.txt'),
        '@global_filter' => url('http://drupal.org/project/global_filter'),
      ));
      break;
  }
  return empty($t) ? '' : '<p>' . $t . '</p>';
}