function uc_order_address_book in Ubercart 7.3
Same name and namespace in other branches
- 5 uc_order/uc_order.module \uc_order_address_book()
- 6.2 uc_order/uc_order.admin.inc \uc_order_address_book()
Displays 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 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;
}