function entityform_load_multiple in Entityform 7.2
Same name and namespace in other branches
- 7 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
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 550 - 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);
}