You are here

function finder_base_handlers in Finder 6

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

Get a list of findable Drupal objects.

Return value

An array of base handlers from hook implementations.

See also

hook_finder_base_handlers()

2 calls to finder_base_handlers()
finder_admin_get_base_options in includes/finder.admin.inc
Get base handlers and convert to options array.
finder_load_base_handler in ./finder.module
Attach base handler data to the finder.

File

./finder.module, line 1256
The finder module.

Code

function finder_base_handlers() {
  static $base_handlers;
  if (empty($base_handlers)) {
    $base_handlers = module_invoke_all('finder_base_handlers');
  }
  return $base_handlers;
}