function tripal_organism_help
2.x tripal_organism.module | tripal_organism_help($path, $arg) |
3.x tripal_organism.module | tripal_organism_help($path, $arg) |
1.x tripal_organism.module | tripal_organism_help($path, $arg) |
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
File
- tripal_organism/
tripal_organism.module, line 571 - tripal_organism Organism Module
Code
function tripal_organism_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/help#tripal_organism":
$output = '<p>' .
t("Displays links to nodes created on this date") .
'</p>';
break;
}
return $output;
}