function uc_order_address_book in Ubercart 6.2
Same name and namespace in other branches
- 5 uc_order/uc_order.module \uc_order_address_book()
- 7.3 uc_order/uc_order.admin.inc \uc_order_address_book()
Display a form to select a previously entered address.
See also
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 781 - Order administration menu items.
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;
}