function tripal_featuremap_help
2.x tripal_featuremap.module | tripal_featuremap_help($path, $arg) |
3.x tripal_featuremap.module | tripal_featuremap_help($path, $arg) |
1.x tripal_featuremap.module | tripal_featuremap_help($path, $arg) |
Implements hook_help(). Display help and module information
Parameters
path: which path of the site we're displaying help
arg: array that holds the current path as would be returned from arg() function
Return value
help text for the path
Related topics
2 string references to 'tripal_featuremap_help'
- tripal_featuremap_menu in tripal_featuremap/
tripal_featuremap.module - Implements hook_menu().
- tripal_featuremap_theme in tripal_featuremap/
tripal_featuremap.module - Implements hook_theme().
File
- tripal_featuremap/
tripal_featuremap.module, line 35 - Integrates the Chado Map module with Drupal Nodes & Views
Code
function tripal_featuremap_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/help#tripal_featuremap":
$output = '<p>' .
t("Displays links to nodes created on this date") .
'</p>';
break;
}
return $output;
}