You are here

function entityform_load_multiple in Entityform 7

Same name and namespace in other branches
  1. 7.2 entityform.module \entityform_load_multiple()

Load multiple entityforms based on certain conditions.

Parameters

$entityform_ids: An array of entityform IDs.

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

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

Return value

An array of entityform objects, indexed by entityform_id.

See also

entity_load()

entityform_load()

1 call to entityform_load_multiple()
entityform_load in ./entityform.module
Fetch a entityform object. Make sure that the wildcard you choose in the entityform entity definition fits the function name here.

File

./entityform.module, line 546
Module for the Entityform Entity - a starting point to create your own Entity and associated administration interface

Code

function entityform_load_multiple($entityform_ids = array(), $conditions = array(), $reset = FALSE) {
  return entity_load('entityform', $entityform_ids, $conditions, $reset);
}