You are here

function theme_uc_payment_pack_receive_check_form in Ubercart 6.2

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

Themes the receive check form.

See also

uc_payment_pack_receive_check_form()

uc_payment_pack_receive_check_form_submit()

File

payment/uc_payment_pack/uc_payment_pack.admin.inc, line 79
Payment pack administration menu items.

Code

function theme_uc_payment_pack_receive_check_form($form) {
  drupal_add_js(drupal_get_path('module', 'uc_payment') . '/uc_payment.js');
  $output = '<p>' . t('Use the form to enter the check into the payments system and set the expected clear date.') . '</p>';
  $output .= '<p><strong>' . t('Order balance:') . '</strong> ' . drupal_render($form['balance']) . '</p>';
  $output .= drupal_render($form);
  return $output;
}