You are here

function commerce_recurring_load_multiple in Commerce Recurring Framework 7.2

Loads multiple recurring entities by ID or based on a set of matching conditions.

Parameters

$recurring_ids: An array of commerce recurring IDs.

$conditions: An array of conditions to filter loaded orders by on the {commerce_recurring} table in the form 'field' => $value.

$reset: Whether to reset the internal commerce recurring loading cache.

Return value

An array of order objects indexed by id.

See also

entity_load()

1 call to commerce_recurring_load_multiple()
commerce_recurring_load in ./commerce_recurring.module
Loads a recurring entity by ID.

File

./commerce_recurring.module, line 458
Commerce recurring module file.

Code

function commerce_recurring_load_multiple(array $recurring_ids = array(), array $conditions = array(), $reset = FALSE) {
  return entity_load('commerce_recurring', $recurring_ids, $conditions, $reset);
}