function invite_load_multiple in Invite 7.4
Load multiple invites based on certain conditions.
Parameters
array|bool $iids: Array with ID's or bool.
array $conditions: Array with conditions.
bool $reset: Whether to reset the internal cache for the requested entity type.
Return value
mixed An array of entity objects indexed by their ids. When no results are found, an empty array is returned.
2 calls to invite_load_multiple()
- invite_by_code_load in ./
invite.module - Loads Invite by registration code.
- invite_load in ./
invite.module - Loads Invite by Id.
File
- ./
invite.module, line 608
Code
function invite_load_multiple($iids, $conditions = array(), $reset = FALSE) {
return entity_load('invite', $iids, $conditions, $reset);
}