You are here

function _webform_filter_descriptions in Webform 5.2

Same name and namespace in other branches
  1. 6.3 webform.module \_webform_filter_descriptions()
  2. 6.2 webform.module \_webform_filter_descriptions()
  3. 7.4 webform.module \_webform_filter_descriptions()
  4. 7.3 webform.module \_webform_filter_descriptions()

Filters all special tokens provided by webform, and allows basic layout in descriptions.

9 calls to _webform_filter_descriptions()
_webform_render_date in components/date.inc
Build a form item array containing all the properties of this component.
_webform_render_email in components/email.inc
Build a form item array containing all the properties of this component.
_webform_render_fieldset in components/fieldset.inc
Build a form item array containing all the properties of this component.
_webform_render_file in components/file.inc
Build a form item array containing all the properties of this component.
_webform_render_grid in components/grid.inc

... See full list

File

./webform.module, line 2084

Code

function _webform_filter_descriptions($string, $node = NULL, $submission = NULL, $strict = TRUE) {
  return check_markup(_webform_filter_values($string, $node, $submission, $strict));
}