You are here

function htmlpurifier_help in HTML Purifier 7

Same name and namespace in other branches
  1. 5 htmlpurifier.module \htmlpurifier_help()
  2. 6.2 htmlpurifier.module \htmlpurifier_help()
  3. 6 htmlpurifier.module \htmlpurifier_help()
  4. 7.2 htmlpurifier.module \htmlpurifier_help()

Implements hook_help().

File

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

Code

function htmlpurifier_help($path, $arg) {
  $output = NULL;
  switch ($path) {
    case 'admin/help#htmlpurifier':
      $output = t(<<<TEXT
The HTML Purifier Drupal module provides a text filter that removes
malicious HTML and ensures standards compliant output.  You can modify
text formats at <a href="@formats">the format configurations page</a>.
TEXT
, array(
        '@formats' => url('admin/config/content/formats'),
      ));
      break;
  }
  return $output;
}