You are here

function uc_order_address_book in Ubercart 5

Same name and namespace in other branches
  1. 6.2 uc_order/uc_order.admin.inc \uc_order_address_book()
  2. 7.3 uc_order/uc_order.admin.inc \uc_order_address_book()
1 string reference to 'uc_order_address_book'
uc_order_menu in uc_order/uc_order.module
Implementation of hook_menu().

File

uc_order/uc_order.module, line 2162

Code

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