Functions to sanitize values.
See http://drupal.org/writing-secure-code for information on writing secure code.
Name | Location | Description |
---|---|---|
check_markup |
drupal/ |
Runs all the enabled filters on a piece of text. |
check_plain |
drupal/ |
Encodes special characters in a plain-text string for display as HTML. |
check_url |
drupal/ |
Strips dangerous protocols from a URI and encodes it for output to HTML. |
drupal_attributes |
drupal/ |
Converts an associative array to an XML/HTML tag attribute string. |
drupal_strip_dangerous_protocols |
drupal/ |
Strips dangerous protocols (e.g. 'javascript:') from a URI. |
filter_xss |
drupal/ |
Filters HTML to prevent cross-site-scripting (XSS) vulnerabilities. |
filter_xss_admin |
drupal/ |
Applies a very permissive XSS/HTML filter for admin-only use. |
filter_xss_bad_protocol |
drupal/ |
Processes an HTML attribute value and strips dangerous protocols from URLs. |
format_string |
drupal/ |
Formats a string for HTML display by replacing variable placeholders. |
get_t |
drupal/ |
Returns the name of the proper localization function. |
st |
drupal/ |
Translates a string when some systems are not available. |
t |
drupal/ |
Translates a string to the current language or to a given language. |
_filter_xss_attributes |
drupal/ |
Processes a string of HTML attributes. |
_filter_xss_split |
drupal/ |
Processes an HTML tag. |