You are here

function uc_views_bulk_operations_orders_delete_orders in Ubercart Views 6.3

1 string reference to 'uc_views_bulk_operations_orders_delete_orders'
uc_views_bulk_operations_order_operations in uc_views_bulk_operations/uc_views_bulk_operations.module
Implementation of hook_node_operations(). (rather, hook_order_operations, which is based off the other)

File

uc_views_bulk_operations/uc_views_bulk_operations.module, line 109

Code

function uc_views_bulk_operations_orders_delete_orders($orders) {
  foreach ($orders as $order_id) {
    $order = uc_order_load($order_id);
    uc_order_delete($order_id);
  }
}