You are here

function finder_element_load_multiple in Finder 6

Same name and namespace in other branches
  1. 7 finder.module \finder_element_load_multiple()

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.

2 calls to finder_element_load_multiple()
finder_element_load in ./finder.module
Load a finder element object from the database.
finder_load_objects in ./finder.module
Load objects from the database.

File

./finder.module, line 498
The finder module.

Code

function finder_element_load_multiple($ids = NULL, $conditions = array(), $reset = FALSE) {
  return finder_load_objects('finder_element', $ids, $conditions, $reset);
}