You are here

function htmlpurifier_filter_tips in HTML Purifier 6.2

Same name and namespace in other branches
  1. 5 htmlpurifier.module \htmlpurifier_filter_tips()
  2. 6 htmlpurifier.module \htmlpurifier_filter_tips()

Implementation of hook_filter_tips().

File

./htmlpurifier.module, line 106
Implements HTML Purifier as a Drupal filter.

Code

function htmlpurifier_filter_tips($delta, $format, $long = FALSE) {
  if (variable_get("htmlpurifier_help_{$format}", TRUE)) {
    return t('HTML tags will be transformed to conform to HTML standards.');
  }
}