You are here

function highlight_help in Highlight 5

Same name and namespace in other branches
  1. 6 highlight.module \highlight_help()

Implementation of hook_help

File

./highlight.module, line 23

Code

function highlight_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      $output .= t('A helper module to highlight terms on pages, as in search results.');
      break;
  }
  return $output;
}