function uc_addresses_checkout_pane_shipping in Ubercart Addresses 7
Same name and namespace in other branches
- 6.2 uc_addresses.ubercart.inc \uc_addresses_checkout_pane_shipping()
Gets the delivery information.
Overrides uc_checkout_pane_delivery().
See also
uc_addresses_checkout_pane_address()
1 string reference to 'uc_addresses_checkout_pane_shipping'
- uc_addresses_uc_checkout_pane_alter in ./
uc_addresses.module - Implements hook_uc_checkout_pane_alter().
File
- ./
uc_addresses.ubercart.inc, line 20 - Ubercart callbacks for the checkout- and order panes.
Code
function uc_addresses_checkout_pane_shipping($op, $order, $form = NULL, &$form_state = NULL) {
$description = t('Enter your delivery address and information here.');
$copy = t('My delivery information is the same as my billing information.');
return uc_addresses_checkout_pane_address('shipping', $op, $order, $form, $form_state, $description, $copy);
}