You are here

function highlight_filter_tips in Highlight 6

Same name and namespace in other branches
  1. 5 highlight.module \highlight_filter_tips()

Implemnatation of highlight

1 call to highlight_filter_tips()
highlight_help in ./highlight.module
Implementation of hook_help

File

./highlight.module, line 144

Code

function highlight_filter_tips($delta, $format, $long = FALSE) {
  switch ($delta) {
    case 0:
      switch ($long) {
        case 0:
          return t('Highlight terms in this textarea.');
      }
  }
}