You are here

function hook_finder_element_handlers in Finder 6

Enable new kinds of element types.

Return value

An array, where the keys are the IDs of the element type, 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_optionwidgets_finder_element_handlers()

3 functions implement hook_finder_element_handlers()

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

finder_autocomplete_finder_element_handlers in modules/finder_autocomplete/finder_autocomplete.module
Implementation of hook_finder_element_handlers().
finder_optionwidgets_finder_element_handlers in modules/finder_optionwidgets/finder_optionwidgets.module
Implementation of hook_finder_element_handlers().
finder_text_finder_element_handlers in modules/finder_text/finder_text.module
Implementation of hook_finder_element_handlers().
1 invocation of hook_finder_element_handlers()
finder_element_handlers in ./finder.module
Get a list of possible element types.

File

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

Code

function hook_finder_element_handlers() {

  // no example code
}