You are here

function commerce_cart_commerce_checkout_pane_info in Commerce Core 7

Implements hook_commerce_checkout_pane_info().

File

modules/cart/commerce_cart.module, line 195
Implements the shopping cart system and add to cart features.

Code

function commerce_cart_commerce_checkout_pane_info() {
  $checkout_panes = array();
  $checkout_panes['cart_contents'] = array(
    'title' => t('Shopping cart contents'),
    'base' => 'commerce_cart_contents_pane',
    'file' => 'includes/commerce_cart.checkout_pane.inc',
    'page' => 'checkout',
    'weight' => -10,
  );
  return $checkout_panes;
}