1 field.module | _field_filter_xss_allowed_tags() |
List of tags allowed by field_filter_xss().
Related topics
File
- core/
modules/ field/ field.module, line 1045 - Attach custom data fields to Backdrop entities.
Code
function _field_filter_xss_allowed_tags() {
return array('a', 'b', 'big', 'code', 'del', 'em', 'i', 'ins', 'pre', 'q', 'small', 'span', 'strong', 'sub', 'sup', 'tt', 'ol', 'ul', 'li', 'p', 'br', 'img');
}