You are here

function uc_recurring_order_uc_checkout_pane in UC Recurring Payments and Subscriptions 7.2

Implements hook_uc_checkout_pane().

Show a pane just above the order total that allows shoppers to select recurring option for the order.

File

modules/uc_recurring_order/uc_recurring_order.module, line 165
Provides a way to duplicate entire orders.

Code

function uc_recurring_order_uc_checkout_pane() {
  $panes[] = array(
    'id' => 'recurring',
    'callback' => 'uc_recurring_order_pane_checkout',
    'title' => t('Recurring Order'),
    'desc' => t("Allows shoppers to select to have their order automatically re-occur."),
    'weight' => 5,
    'process' => TRUE,
  );
  return $panes;
}