You are here

function _htmlpurifier_filter_tips in HTML Purifier 7

Same name and namespace in other branches
  1. 7.2 htmlpurifier.module \_htmlpurifier_filter_tips()

Filter tips callback, used by htmlpurifier_filter_info().

1 string reference to '_htmlpurifier_filter_tips'
htmlpurifier_filter_info in ./htmlpurifier.module
Implements hook_filter_info().

File

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

Code

function _htmlpurifier_filter_tips($delta, $format, $long = FALSE) {
  if (!empty($delta->settings['htmlpurifier_help'])) {
    return t('HTML tags will be transformed to conform to HTML standards.');
  }
}