| Versionen | |
|---|---|
| drupal7 | field_filter_xss($string) |
Like filter_xss_admin(), but with a shorter list of allowed tags.
Used for items entered by administrators, like field descriptions, allowed values, where some (mainly inline) mark-up may be desired (so check_plain() is not acceptable).
modules/
<?php
function field_filter_xss($string) {
return filter_xss($string, _field_filter_xss_allowed_tags());
}
?>
Kommentare
Kommentar hinzufügen