finder_element_load_multiple
| Versions | |
|---|---|
| 6.x-1.x – 7.x-1.x | finder_element_load_multiple($ids = NULL, $conditions = array(), $reset = FALSE) |
Load finder element objects from the database.
Parameters
$ids An array of finder element IDs if selecting by IDs.
$conditions An array of conditions on the table in the form 'field' => $value.
$reset Whether to reset the internal cache for finder element objects.
Return value
An array of loaded finder element objects indexed by ID.
Code
./
<?php
function finder_element_load_multiple($ids = NULL, $conditions = array(), $reset = FALSE) {
return finder_load_objects('finder_element', $ids, $conditions, $reset);
}
?>
