You are here

function uc_order_product_delete_multiple in Ubercart 7.3

Remove multiple product lines from an order.

Parameters

array $order_product_ids: List of ordered product IDs of products to remove.

3 calls to uc_order_product_delete_multiple()
uc_cart_checkout in uc_cart/uc_cart.pages.inc
Displays the cart checkout page built of checkout panes from enabled modules.
uc_order_delete in uc_order/uc_order.module
Entity API "deletion callback" for uc_order entity.
uc_order_product_delete in uc_order/uc_order.module
Remove a single product line from an order.

File

uc_order/uc_order.module, line 1124

Code

function uc_order_product_delete_multiple($order_product_ids) {
  return entity_delete_multiple('uc_order_product', $order_product_ids);
}