You are here

function finder_load_all in Finder 7.2

Export CRUD callback to load all finders.

Parameters

$reset: Whether to reset the internal cache for finder objects.

Return value

An array of loaded finder objects.

6 calls to finder_load_all()
finder_block_info in ./finder.module
Implements hook_block_info().
finder_cron in ./finder.module
Implements hook_cron().
finder_menu in ./finder.module
Implements hook_menu().
finder_ui_locale in modules/finder_ui/finder_ui.i18n_string.inc
Implements hook_locale().
finder_ui_menu in modules/finder_ui/finder_ui.module
Implements hook_menu().

... See full list

1 string reference to 'finder_load_all'
finder_schema in ./finder.install
Implements hook_schema().

File

./finder.module, line 371
The finder module.

Code

function finder_load_all($reset = FALSE) {
  return finder_load_multiple(NULL, $reset);
}