You are here

function uc_addresses_checkout_pane_shipping in Ubercart Addresses 6.2

Same name and namespace in other branches
  1. 7 uc_addresses.ubercart.inc \uc_addresses_checkout_pane_shipping()

Gets the delivery information.

Overrides uc_checkout_pane_delivery().

Parameters

string $op: The operation that is being performed.

array/object $order: The Ubercart order.

array $values: The values from the checkout form.

Return value

mixed Depending on the operation, different results may be returned.

See also

uc_addresses_checkout_pane_address()

1 string reference to 'uc_addresses_checkout_pane_shipping'
uc_addresses_checkout_pane_alter in ./uc_addresses.module
Implementation of hook_checkout_pane_alter().

File

./uc_addresses.ubercart.inc, line 51
Ubercart callbacks for the checkout- and order panes.

Code

function uc_addresses_checkout_pane_shipping($op, &$order, $values = array()) {
  return uc_addresses_checkout_pane_address('shipping', $op, $order, $values);
}