function commerce_shipping_commerce_checkout_pane_info in Commerce Shipping 7.2
Same name and namespace in other branches
- 7 commerce_shipping.module \commerce_shipping_commerce_checkout_pane_info()
Implements hook_commerce_checkout_pane_info().
File
- ./
commerce_shipping.module, line 104 - Defines a system for calculating shipping costs associated with an order.
Code
function commerce_shipping_commerce_checkout_pane_info() {
$checkout_panes = array();
$checkout_panes['commerce_shipping'] = array(
'title' => t('Shipping service'),
'base' => 'commerce_shipping_pane',
'file' => 'includes/commerce_shipping.checkout_pane.inc',
'page' => 'shipping',
'weight' => 2,
'review' => FALSE,
);
return $checkout_panes;
}