You are here

function theme_webform_display_esign in E-Sign 7

Format the output of data for this component.

1 theme call to theme_webform_display_esign()
_webform_display_esign in esign_webform/esign_webform.module
Implements _webform_display_component().

File

esign_webform/esign_webform.module, line 188
Defines all hooks and functions to manage the e-sign field for webforms.

Code

function theme_webform_display_esign($variables) {
  $element = $variables['element'];
  $value = $element['#format'] == 'html' ? $element['#value'] : $element['#value'];
  return $value !== '' ? $value : '';
}