You are here

function insight_help in Insight 7

Implements hook_help().

File

./insight.module, line 146

Code

function insight_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/insight':
      return t('This is some help text for the insight settings page.');
    case 'admin/help#insight':
      $output = '<p>' . t('This is help text for the insight help page') . '</p>';
      return $output;
  }
}