You are here

function commerce_cpc_commerce_cp_info in Commerce Cart Pane 7

Implements hook_commerce_cp_info().

File

modules/coupon/commerce_cpc.module, line 14

Code

function commerce_cpc_commerce_cp_info() {
  $cart_panes = array();
  $cart_panes['cart_coupon'] = array(
    'name' => t('Coupon'),
    'pane callback' => 'commerce_cpc_coupon_pane',
    'page' => 'cart',
  );
  return $cart_panes;
}