function uc_payment_checkout_pane in Ubercart 5
Same name and namespace in other branches
- 6.2 payment/uc_payment/uc_payment.module \uc_payment_checkout_pane()
Implementation of hook_checkout_pane().
File
- payment/
uc_payment/ uc_payment.module, line 269
Code
function uc_payment_checkout_pane() {
$panes[] = array(
'id' => 'payment',
'title' => t('Payment method'),
'desc' => t('Select a payment method from the enabled payment modules.'),
'callback' => 'uc_checkout_pane_payment',
'weight' => 6,
);
return $panes;
}