function tripal_analysis_help

2.x tripal_analysis.module tripal_analysis_help($path, $arg)
3.x tripal_analysis.module tripal_analysis_help($path, $arg)
1.x tripal_analysis.module tripal_analysis_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_analysis/tripal_analysis.module, line 463
Contains all the main hook implementations for the tripal_analysis module

Code

function tripal_analysis_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#tripal_analysis":
      $output = '<p>' .
        t("Displays links to nodes created on this date") .
        '</p>';
      break;
  }
  return $output;
}