You are here

function hook_form_finder_admin_edit_alter in Finder 6

Alter the form to configure a finder.

Useful for base handler modules to add additional options and validation. Any fields added under $form['settings'] will be automatically saved by Finder and later accessible at $finder->settings.

Parameters

$finder: The finder object.

See also

hook_form_FORM_ID_alter()

3 functions implement hook_form_finder_admin_edit_alter()

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

finder_i18nstrings_form_finder_admin_edit_alter in modules/finder_i18nstrings/finder_i18nstrings.module
Implementation of hook_form_FORM_ID_alter().
finder_search_form_finder_admin_edit_alter in modules/finder_search/finder_search.module
Implementation of hook_form_FORM_ID_alter().
finder_views_form_finder_admin_edit_alter in modules/finder_views/finder_views.module
Implementation of hook_form_FORM_ID_alter().

File

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

Code

function hook_form_finder_admin_edit_alter(&$form, &$form_state, $finder) {

  // no example code
}