You are here

function htmlpurifier_help in HTML Purifier 5

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

Implementation of hook_help().

Used by drupal 4.7

File

./htmlpurifier.module, line 8

Code

function htmlpurifier_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      $output = t('Filter that removes malicious HTML and ensures standards compliant output.');
      break;
  }
  return $output;
}