You are here

function theme_webform_display_mapping in Webform Bonus Pack 7.3

Same name and namespace in other branches
  1. 6.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 171
Webform module mapping component.

Code

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