1 entity_test.module entity_test_load_multiple($ids = array(), $conditions = array(), $reset = FALSE)

Loads multiple test entities based on certain conditions.

Parameters

$ids: An array of entity IDs.

$conditions: An array of conditions to match against the {entity} table.

$reset: A boolean indicating that the internal cache should be reset.

Return value

An array of test entity objects, indexed by ID.:

File

core/modules/entity/tests/entity_test/entity_test.module, line 78
Test module for the entity API providing an entity type for testing.

Code

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