You are here

function commerce_shipping_commerce_checkout_page_info in Commerce Shipping 7.2

Implements hook_commerce_checkout_page_info().

File

./commerce_shipping.module, line 90
Defines a system for calculating shipping costs associated with an order.

Code

function commerce_shipping_commerce_checkout_page_info() {
  $checkout_pages = array();
  $checkout_pages['shipping'] = array(
    'title' => t('Shipping'),
    'weight' => 5,
  );
  return $checkout_pages;
}