You are here

function _content_filter_xss_display_allowed_tags in Content Construction Kit (CCK) 5

Same name and namespace in other branches
  1. 6.3 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()
number_field_settings in ./number.module
Implementation of hook_field_settings().
text_field_settings in ./text.module
Implementation of hook_field_settings().
_content_admin_field in ./content_admin.inc
Menu callback; presents the field editing page.

File

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

Code

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