You are here

function uc_payment_uc_order_pane in Ubercart 7.3

Implements hook_uc_order_pane().

File

payment/uc_payment/uc_payment.module, line 204

Code

function uc_payment_uc_order_pane() {
  $panes['payment'] = array(
    'callback' => 'uc_order_pane_payment',
    'title' => t('Payment'),
    'desc' => t('Specify and collect payment for an order.'),
    'class' => 'pos-left',
    'weight' => 4,
    'show' => array(
      'view',
      'edit',
      'customer',
    ),
  );
  return $panes;
}