You are here

function theme_webform_display_node in Webform Node Element 6

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

Code

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