| 7 field.module | _field_filter_xss_allowed_tags() |
| 8 field.module | _field_filter_xss_allowed_tags() |
List of tags allowed by field_filter_xss().
Related topics
2 calls to _field_filter_xss_allowed_tags()
File
- modules/
field/ field.module, line 781 - Attach custom data fields to Drupal 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');
}
Login or register to post comments