function finder_load_multiple in Finder 7
Same name and namespace in other branches
- 6 finder.module \finder_load_multiple()
- 7.2 finder.module \finder_load_multiple()
Load finder objects from the database.
Parameters
$ids: An array of finder 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 objects.
Return value
An array of loaded finder objects indexed by ID.
8 calls to finder_load_multiple()
- finder_admin_list in includes/
finder.admin.inc - Admin finder list page.
- finder_block_info in ./
finder.module - Implements hook_block_info().
- finder_i18nstrings_locale in modules/
finder_i18nstrings/ finder_i18nstrings.module - Implements hook_locale().
- finder_load in ./
finder.module - Load a finder object from the database.
- finder_menu in ./
finder.module - Implements hook_menu().
File
- ./
finder.module, line 441 - The finder module.
Code
function finder_load_multiple($ids = NULL, $conditions = array(), $reset = FALSE) {
return finder_load_objects('finder', $ids, $conditions, $reset);
}