You are here

function commerce_cps_commerce_cp_info in Commerce Cart Pane 7

Implements hook_commerce_cp_info().

File

modules/shipping/commerce_cps.module, line 6

Code

function commerce_cps_commerce_cp_info() {
  $cart_panes = array();
  $cart_panes['cart_shipping'] = array(
    'name' => t('Shipping'),
    'pane callback' => 'commerce_cps_shipping_pane',
    'page' => 'cart',
  );
  return $cart_panes;
}