function htmlpurifier_help in HTML Purifier 7.2
Same name and namespace in other branches
- 5 htmlpurifier.module \htmlpurifier_help()
- 6.2 htmlpurifier.module \htmlpurifier_help()
- 6 htmlpurifier.module \htmlpurifier_help()
- 7 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;
}