function uc_addresses_checkout_pane_billing in Ubercart Addresses 6.2
Same name and namespace in other branches
- 7 uc_addresses.ubercart.inc \uc_addresses_checkout_pane_billing()
Gets the billing information.
Overrides uc_checkout_pane_billing().
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_billing'
- uc_addresses_checkout_pane_alter in ./
uc_addresses.module - Implementation of hook_checkout_pane_alter().
File
- ./
uc_addresses.ubercart.inc, line 30 - Ubercart callbacks for the checkout- and order panes.
Code
function uc_addresses_checkout_pane_billing($op, &$order, $values = array()) {
return uc_addresses_checkout_pane_address('billing', $op, $order, $values);
}