function tripal_feature_help
2.x tripal_feature.module | tripal_feature_help($path, $arg) |
3.x tripal_feature.module | tripal_feature_help($path, $arg) |
1.x tripal_feature.module | tripal_feature_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_feature_help'
- tripal_feature_menu in tripal_feature/
tripal_feature.module - Implements hook_menu().
- tripal_feature_theme in tripal_feature/
tripal_feature.module - Implements hook_theme().
File
- tripal_feature/
tripal_feature.module, line 57 - Basic functionality for the tripal module
Code
function tripal_feature_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/help#tripal_feature":
$output = '<p>' . t("Displays links to nodes created on this date") . '</p>';
break;
}
return $output;
}