| 7 field.module | _field_filter_xss_display_allowed_tags() |
| 8 field.module | _field_filter_xss_display_allowed_tags() |
Human-readable list of allowed tags, for display in help texts.
Related topics
2 calls to _field_filter_xss_display_allowed_tags()
File
- modules/
field/ field.module, line 788 - Attach custom data fields to Drupal entities.
Code
function _field_filter_xss_display_allowed_tags() {
return '<' . implode('> <', _field_filter_xss_allowed_tags()) . '>';
}
Login or register to post comments