function _webform_table_paypal in Webform Paypal 7.2
Same name and namespace in other branches
- 7 webform_paypal.module \_webform_table_paypal()
Implements _webform_table_component().
File
- ./
webform_paypal.module, line 304
Code
function _webform_table_paypal($component, $value) {
if (empty($value['status'])) {
return;
}
else {
return ucfirst($value['status']);
}
}