You are here

function hook_finder_element in Finder 6

Build the form element for a finder element.

This function will be called in the module specified in #module for a particular element in hook_finder_element_handlers().

Parameters

$element: The finder element object.

&$form_element: The Forms API form element.

See also

finder_optionwidgets_finder_element()

3 functions implement hook_finder_element()

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 in modules/finder_autocomplete/finder_autocomplete.module
Implementation of hook_finder_element().
finder_optionwidgets_finder_element in modules/finder_optionwidgets/finder_optionwidgets.module
Implementation of hook_finder_element().
finder_text_finder_element in modules/finder_text/finder_text.module
Implementation of hook_finder_element().

File

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

Code

function hook_finder_element($element, &$form_element) {

  // no example code
}