You are here

function uc_recurring_order_uc_cart_pane in UC Recurring Payments and Subscriptions 7.2

Implements hook_uc_cart_pane().

File

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

Code

function uc_recurring_order_uc_cart_pane($items) {
  $panes[] = array(
    'id' => 'recurring',
    'body' => drupal_get_form('uc_recurring_order_pane_cart'),
    'title' => t('Recurring order'),
    'desc' => t("Allows shoppers to select to have their order automatically re-occur."),
    'weight' => 1,
    'enabled' => TRUE,
  );
  return $panes;
}