function tripal_views_help

2.x tripal_views.module tripal_views_help($path, $arg)

Implements hook_help(). Adds a help page to the module list

Related topics

2 string references to 'tripal_views_help'
tripal_views_menu in tripal_views/tripal_views.module
Implements hook_menu(). This hook provides details about new menu items added by this module
tripal_views_theme in tripal_views/tripal_views.module
Implements hook_theme().

File

tripal_views/tripal_views.module, line 173
Basic Tripal Views functionality

Code

function tripal_views_help($path, $arg) {
  if ($path == 'admin/help#tripal_views') {
    return theme('tripal_views_help', array());
  }
}