function commerce_shipping_commerce_checkout_pane_info in Commerce Shipping 7
Same name and namespace in other branches
- 7.2 commerce_shipping.module \commerce_shipping_commerce_checkout_pane_info()
Implements hook_commerce_checkout_pane_info().
File
- ./
commerce_shipping.module, line 12 - Defines the shipping system and checkout integration.
Code
function commerce_shipping_commerce_checkout_pane_info() {
$checkout_panes = array();
$checkout_panes['commerce_shipping'] = array(
'title' => t('Shipping'),
'page' => 'checkout',
'locked' => TRUE,
'file' => 'includes/commerce_shipping.checkout_pane.inc',
'base' => 'commerce_shipping_pane',
'weight' => 2,
);
return $checkout_panes;
}