function theme_webform_display_node in Webform Node Element 7
Same name and namespace in other branches
- 6 components/node.inc \theme_webform_display_node()
Overridable theme function.
1 theme call to theme_webform_display_node()
- _webform_display_node in components/
node.inc - Implements _webform_display_component().
File
- components/
node.inc, line 215 - Webform module node component.
Code
function theme_webform_display_node($variables) {
$element = $variables['element'];
return $element['#format'] == 'html' ? check_plain($element['#markup']) : $element['#markup'];
}