function uc_checkout_pane_billing in Ubercart 7.3
Same name and namespace in other branches
- 5 uc_cart/uc_cart_checkout_pane.inc \uc_checkout_pane_billing()
- 6.2 uc_cart/uc_cart_checkout_pane.inc \uc_checkout_pane_billing()
Gets the billing information.
1 string reference to 'uc_checkout_pane_billing'
- uc_cart_uc_checkout_pane in uc_cart/
uc_cart.module - Implements hook_uc_checkout_pane().
File
- uc_cart/
uc_cart_checkout_pane.inc, line 189 - Callbacks for the default Ubercart checkout panes plus helper functions.
Code
function uc_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_checkout_pane_address('billing', $op, $order, $form_state, $description, $copy);
}