You are here

function _content_filter_xss_display_allowed_tags in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 5 content.module \_content_filter_xss_display_allowed_tags()
  2. 6.2 content.module \_content_filter_xss_display_allowed_tags()

Human-readable list of allowed tags, for display in help texts.

3 calls to _content_filter_xss_display_allowed_tags()
content_field_edit_form in includes/content.admin.inc
Menu callback; presents the field editing page.
number_field_settings in modules/number/number.module
Implementation of hook_field_settings().
text_field_settings in modules/text/text.module
Implementation of hook_field_settings().

File

./content.module, line 1831
Allows administrators to associate custom fields to content types.

Code

function _content_filter_xss_display_allowed_tags() {
  return '<' . implode('> <', _content_filter_xss_allowed_tags()) . '>';
}