You are here

function hook_finder_base_handlers in Finder 6

Enables new types of findable Drupal objects.

Return value

An array, where the keys are the IDs of the base objects, and the values are an array where the keys are parameters '#title' and '#module', where the value of '#title' is a translatable string and the value of '#module' is the string name of your module.

See also

finder_node_finder_base_handlers()

3 functions implement hook_finder_base_handlers()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

finder_node_finder_base_handlers in modules/finder_node/finder_node.module
Implementation of hook_finder_base_handlers().
finder_user_finder_base_handlers in modules/finder_user/finder_user.module
Implementation of hook_finder_base_handlers().
finder_views_finder_base_handlers in modules/finder_views/finder_views.module
Implementation of hook_finder_base_handlers().
1 invocation of hook_finder_base_handlers()
finder_base_handlers in ./finder.module
Get a list of findable Drupal objects.

File

./finder.api.php, line 112
Documents finder's hooks for api reference.

Code

function hook_finder_base_handlers() {

  // no example code
}