You are here

function uc_checkout_pane_delivery in Ubercart 7.3

Same name and namespace in other branches
  1. 5 uc_cart/uc_cart_checkout_pane.inc \uc_checkout_pane_delivery()
  2. 6.2 uc_cart/uc_cart_checkout_pane.inc \uc_checkout_pane_delivery()

Gets the delivery information.

1 string reference to 'uc_checkout_pane_delivery'
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 180
Callbacks for the default Ubercart checkout panes plus helper functions.

Code

function uc_checkout_pane_delivery($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_checkout_pane_address('delivery', $op, $order, $form_state, $description, $copy);
}