You are here

function crm_core_contact_load_multiple in CRM Core 7

Load one or more contact.

Parameters

array $contact_ids: An array of contact id to be loaded

array $conditions (deprecated): An associative array of conditions on the base table with keys equal to the field name and value equal to the value the fields must have

Return value

An array of entity object indexed by their ids

4 calls to crm_core_contact_load_multiple()
crm_core_contact_load in modules/crm_core_contact/crm_core_contact.module
Load a contact.
crm_core_contact_merge_contacts_action_form in modules/crm_core_contact/crm_core_contact.module
Form builder for merging contacts.
crm_core_match_testing_page in modules/crm_core_match/crm_core_match.test.inc
Page callback to display match debug info.
_crm_core_contact_resource_index in modules/crm_core_contact/includes/crm_core_contact_resource.inc
Return an array of crm_core_contacts.

File

modules/crm_core_contact/crm_core_contact.module, line 834
Provides default CRM Core Contact entities and the ability to create more.

Code

function crm_core_contact_load_multiple($contact_ids = array(), $conditions = array(), $reset = FALSE) {
  return entity_load('crm_core_contact', $contact_ids, $conditions, $reset);
}