You are here

function commerce_coupon_commerce_checkout_pane_info in Commerce Coupon 7

Same name and namespace in other branches
  1. 7.2 commerce_coupon.module \commerce_coupon_commerce_checkout_pane_info()

Implements hook_commerce_checkout_pane_info().

File

./commerce_coupon.module, line 104
Coupon System for Drupal Commerce.

Code

function commerce_coupon_commerce_checkout_pane_info() {
  $checkout_panes['commerce_coupon'] = array(
    'title' => t('Coupons'),
    'page' => 'checkout',
    'locked' => FALSE,
    'file' => 'includes/commerce_coupon.checkout_pane.inc',
    'base' => 'commerce_coupon_pane',
    'weight' => 9,
  );
  return $checkout_panes;
}