function theme_webform_display_markup in Webform 7.4
Format the output of data for this component.
1 theme call to theme_webform_display_markup()
- _webform_display_markup in components/
markup.inc - Implements _webform_display_component().
File
- components/
markup.inc, line 173 - Webform module markup component.
Code
function theme_webform_display_markup($variables) {
$element = $variables['element'];
return $element['#access'] ? $element['#value'] : '';
}