function tripal_chado_views_help

3.x tripal_chado_views.module tripal_chado_views_help($path, $arg)

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

Related topics

2 string references to 'tripal_chado_views_help'
tripal_chado_views_menu in tripal_chado_views/tripal_chado_views.module
Implements hook_menu(). This hook provides details about new menu items added by this module
tripal_chado_views_theme in tripal_chado_views/tripal_chado_views.module
Implements hook_theme().

File

tripal_chado_views/tripal_chado_views.module, line 174
Basic Tripal Views functionality

Code

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