You are here

function uc_discounts_uc_checkout_pane in Ubercart Discounts (Alternative) 7.2

Implements hook_uc_checkout_pane().

See also

hook_uc_checkout_pane()

File

uc_discounts/uc_discounts.module, line 521

Code

function uc_discounts_uc_checkout_pane() {
  return array(
    'uc_discounts' => array(
      'callback' => 'uc_discounts_uc_checkout_pane_discounts',
      'title' => t('Discount codes'),
      'desc' => t('Displays entry form for customers to add discount codes.'),
      'weight' => 5,
      'process' => TRUE,
      'collapsible' => TRUE,
      'enabled' => TRUE,
    ),
  );
}