You are here

function taxonomy_menu_form_taxonomy_overview_terms in Taxonomy menu 7.2

Form constructor for the terms overview form. We provide an additional callback.

Using hook_taxonomy_vocabulary_update is nicer then callback, but gives less info and does not always fire.

See also

taxonomy_menu_overview_terms_submit()

1 call to taxonomy_menu_form_taxonomy_overview_terms()
taxonomy_menu_form_taxonomy_overview_terms_alter in ./taxonomy_menu.module
Implements hook_form_FORM_ID_alter().

File

./taxonomy_menu.admin.inc, line 258
Administrative page callbacks for the Taxonomy menu module.

Code

function taxonomy_menu_form_taxonomy_overview_terms(&$form, &$form_state) {
  $form['#submit'][] = 'taxonomy_menu_overview_terms_submit';
}