finder_base_handlers
| Versions | |
|---|---|
| 6.x-1.x – 7.x-1.x | finder_base_handlers() |
Get a list of findable Drupal objects.
Return value
An array of base handlers from hook implementations.
See also
Code
./
<?php
function finder_base_handlers() {
static $base_handlers;
if (empty($base_handlers)) {
$base_handlers = module_invoke_all('finder_base_handlers');
}
return $base_handlers;
}
?>
