function theme_webform_display_paypal in Webform Paypal 7.2
Same name and namespace in other branches
- 7 webform_paypal.module \theme_webform_display_paypal()
Format the output of data for this component.
1 theme call to theme_webform_display_paypal()
- _webform_display_paypal in ./
webform_paypal.module - Implements _webform_display_component().
File
- ./
webform_paypal.module, line 220
Code
function theme_webform_display_paypal($variables) {
$element = $variables['element'];
if (empty($element['#value'])) {
return;
}
else {
return $element['#value'];
}
}