You are here

function uc_payment_uc_checkout_pane in Ubercart 7.3

Implements hook_uc_checkout_pane().

File

payment/uc_payment/uc_payment.module, line 190

Code

function uc_payment_uc_checkout_pane() {
  $panes['payment'] = array(
    'title' => t('Payment method'),
    'desc' => t('Select a payment method from the enabled payment modules.'),
    'callback' => 'uc_checkout_pane_payment',
    'weight' => 6,
  );
  return $panes;
}