You are here

function uc_discounts_uc_order_pane in Ubercart Discounts (Alternative) 7.2

Implements hook_uc_order_pane().

File

uc_discounts/uc_discounts.module, line 370

Code

function uc_discounts_uc_order_pane() {
  return array(
    'uc_discounts' => array(
      'callback' => 'uc_discounts_uc_order_pane_callback',
      'title' => t('Discount codes'),
      'desc' => t('Apply discount codes to orders.'),
      'weight' => 8,
      'show' => array(
        'edit',
      ),
    ),
  );
}