You are here

function theme_uc_payment_method_other_form in Ubercart 5

Same name and namespace in other branches
  1. 6.2 payment/uc_payment_pack/uc_payment_pack.module \theme_uc_payment_method_other_form()

File

payment/uc_payment_pack/uc_payment_pack.module, line 119
Provides the check/money order, COD, and "other" payment methods.

Code

function theme_uc_payment_method_other_form($form) {
  $output = '<table class="order-edit-table"><tr><td class="oet-label">' . t('Description:') . '</td><td>' . drupal_render($form['pm_other_description']) . '</td></tr></table>';
  return $output;
}