You are here

function party_load_multiple in Party 8.2

Same name and namespace in other branches
  1. 7 party.module \party_load_multiple()

Load party entities from the database.

Parameters

$pids: An array of party IDs.

$conditions: (deprecated) An associative array of conditions on the {party} table, where the keys are the database fields and the values are the values those fields must have. Instead, it is preferable to use EntityFieldQuery to retrieve a list of entity IDs loadable by this function.

$reset: Whether to reset the cache.

Return value

An array of party objects indexed by nid.

1 call to party_load_multiple()
party_load in ./party.module
Load a party entity from the database.

File

./party.module, line 1194
Provides a generic CRM party entity.

Code

function party_load_multiple($pids = array(), $conditions = array(), $reset = FALSE) {
  return entity_load('party', $pids, $conditions, $reset);
}