You are here

function uc_order_load_multiple in Ubercart 7.3

Loads one or more order entities from the database.

Parameters

$ids: An array of order IDs.

array $conditions: An array of conditions on the {uc_orders} table in the form 'field' => $value.

Return value

array An array of order objects indexed by order_id.

1 call to uc_order_load_multiple()
uc_order_load in uc_order/uc_order.module
Loads one order entity from the database.

File

uc_order/uc_order.module, line 1331

Code

function uc_order_load_multiple($ids, $conditions = array(), $reset = FALSE) {
  return entity_load('uc_order', $ids, $conditions, $reset);
}