You are here

function uc_addresses_checkout_pane_billing in Ubercart Addresses 7

Same name and namespace in other branches
  1. 6.2 uc_addresses.ubercart.inc \uc_addresses_checkout_pane_billing()

Gets the billing information.

Overrides uc_checkout_pane_billing().

See also

uc_addresses_checkout_pane_address()

1 string reference to 'uc_addresses_checkout_pane_billing'
uc_addresses_uc_checkout_pane_alter in ./uc_addresses.module
Implements hook_uc_checkout_pane_alter().

File

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

Code

function uc_addresses_checkout_pane_billing($op, $order, $form = NULL, &$form_state = NULL) {
  $description = t('Enter your billing address and information here.');
  $copy = t('My billing information is the same as my delivery information.');
  return uc_addresses_checkout_pane_address('billing', $op, $order, $form, $form_state, $description, $copy);
}