1 entity_example.module entity_example_basic_load_multiple($basic_ids = FALSE, $conditions = array(), $reset = FALSE)

Loads multiple basic entities.

We only need to pass this request along to entity_load(), which will in turn call the load() method of our entity controller class.

Related topics

File

modules/examples/entity_example/entity_example.module, line 128
Hook implementations for the Entity Example module.

Code

function entity_example_basic_load_multiple($basic_ids = FALSE, $conditions = array(), $reset = FALSE) {
  return entity_load('entity_example_basic', $basic_ids, $conditions, $reset);
}