You are here

function theme_webform_display_mapping in Webform Bonus Pack 6.3

Same name and namespace in other branches
  1. 7.3 components/mapping.inc \theme_webform_display_mapping()
1 theme call to theme_webform_display_mapping()
_webform_display_mapping in components/mapping.inc
Implementation of _webform_display_component().

File

components/mapping.inc, line 173
Webform module mapping component.

Code

function theme_webform_display_mapping($element) {
  return $element['#format'] == 'html' ? check_plain($element['#value']) : $element['#value'];
}