filter_xss_admin

  1. drupal
    1. 4.7 filter.module
    2. 5 filter.module
    3. 6 filter.module
    4. 7
Versions
4.7 – 7 filter_xss_admin($string)

Very permissive XSS/HTML filter for admin-only use.

Use only for fields where it is impractical to use the whole filter system, but where some (mainly inline) mark-up is desired (so check_plain() is not acceptable).

Allows all tags that can be used inside an HTML body, save for scripts and styles.

Related topics

▾ 20 functions call filter_xss_admin()

ajax_prepare_response in drupal/includes/ajax.inc
Converts the return value of a page callback into an Ajax commands array.
bartik_process_maintenance_page in drupal/themes/bartik/template.php
Override or insert variables into the maintenance page template.
bartik_process_page in drupal/themes/bartik/template.php
Override or insert variables into the page template.
drupal_deliver_html_page in drupal/includes/common.inc
Package and send the result of a page callback to the browser as HTML.
node_help in drupal/modules/node/node.module
Implements hook_help().
seven_admin_block_content in drupal/themes/seven/template.php
Overrides theme_admin_block_content().
seven_node_add_list in drupal/themes/seven/template.php
Display the list of available node types for node creation.
system_message_action in drupal/modules/system/system.module
Sends a message to the current user's screen.
template_preprocess_forum_list in drupal/modules/forum/forum.module
Process variables to format a forum listing.
template_preprocess_html in drupal/includes/theme.inc
Preprocess variables for html.tpl.php
template_preprocess_page in drupal/includes/theme.inc
Preprocess variables for page.tpl.php
theme_admin_block_content in drupal/modules/system/system.admin.inc
Returns HTML for the content of an administrative block.
theme_form_element_label in drupal/includes/form.inc
Returns HTML for a form element label and required marker.
theme_menu_admin_overview in drupal/modules/menu/menu.admin.inc
Returns HTML for a menu title and description for the menu overview page.
theme_node_add_list in drupal/modules/node/node.pages.inc
Returns HTML for a list of available node types for node creation.
theme_node_admin_overview in drupal/modules/node/content_types.inc
Returns HTML for a node type description for the content type admin overview page.
user_account_form in drupal/modules/user/user.module
Helper function to add default user account fields to user registration and edit form.
_drupal_error_handler_real in drupal/includes/errors.inc
Custom PHP error handler.
_locale_languages_configure_form_language_table in drupal/modules/locale/locale.admin.inc
Helper function to build a language provider table.
_profile_form_explanation in drupal/modules/profile/profile.module

Code

drupal/includes/common.inc, line 1294

<?php
function filter_xss_admin($string) {
  return filter_xss($string, array('a', 'abbr', 'acronym', 'address', 'b', 'bdo', 'big', 'blockquote', 'br', 'caption', 'cite', 'code', 'col', 'colgroup', 'dd', 'del', 'dfn', 'div', 'dl', 'dt', 'em', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'img', 'ins', 'kbd', 'li', 'ol', 'p', 'pre', 'q', 'samp', 'small', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'tr', 'tt', 'ul', 'var'));
}
?>