You are here

function uc_order_address_book in Ubercart 7.3

Same name and namespace in other branches
  1. 5 uc_order/uc_order.module \uc_order_address_book()
  2. 6.2 uc_order/uc_order.admin.inc \uc_order_address_book()

Displays a form to select a previously entered address.

See also

uc_order_address_book_form()

1 string reference to 'uc_order_address_book'
uc_order_menu in uc_order/uc_order.module
Implements hook_menu().

File

uc_order/uc_order.admin.inc, line 616
Order administration menu items.

Code

function uc_order_address_book() {
  $uid = intval($_POST['uid']);
  $type = $_POST['type'];
  $func = $_POST['func'];
  $form = drupal_get_form('uc_order_address_book_form', $uid, $type, $func);
  print drupal_render($form);
  exit;
}