function _filter_html_escape

7.x filter.module _filter_html_escape($text)

Implements callback_filter_process().

Escapes all HTML tags, so they will be visible instead of being effective.

Related topics

2 string references to '_filter_html_escape'
FilterUnitTestCase::testHtmlEscapeFilter in drupal-7.x/modules/filter/filter.test
Tests the HTML escaping filter.
filter_filter_info in drupal-7.x/modules/filter/filter.module
Implements hook_filter_info().

File

drupal-7.x/modules/filter/filter.module, line 1769
Framework for handling the filtering of content.

Code

function _filter_html_escape($text) {
  return trim(check_plain($text));
}