function pollim_load_multiple in Poll Improved 7
Load multiple pollims based on certain conditions.
Parameters
$pollim_ids: An array of pollim IDs.
$conditions: An array of conditions to match against the {pollim} table.
$reset: A boolean indicating that the internal cache should be reset.
Return value
An array of pollim objects, indexed by pollim_id.
See also
1 call to pollim_load_multiple()
- pollim_load in ./
pollim.module - Fetch a pollim object. Make sure that the wildcard you choose in the pollim entity definition fits the function name here.
File
- ./
pollim.module, line 249 - Module for the Pollim Entity - a starting point to create your own Entity and associated administration interface
Code
function pollim_load_multiple($pollim_ids = array(), $conditions = array(), $reset = FALSE) {
return entity_load('pollim', $pollim_ids, $conditions, $reset);
}