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