1 common.inc | _filter_xss_display_allowed_tags() |
Human-readable list of the default tags allowed by filter_xss(), for display in help texts.
Related topics
File
- core/
includes/ common.inc, line 1914 - Common functions that many Backdrop modules will need to reference.
Code
function _filter_xss_display_allowed_tags() {
return '<' . implode('> <', _filter_xss_allowed_tags()) . '>';
}