function _filter_html_escape

_filter_html_escape($text)

Implements callback_filter_process().

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

Related topics

File

modules/filter/filter.module, line 1781
Framework for handling the filtering of content.

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!filter!filter.module/function/_filter_html_escape/7.x