You are here

function taxonomy_image_form_field_ui_display_overview_form_alter in Taxonomy Image 7

Implements hook_form_FORM_ID_alter() for field_ui_display_overview_form().

See also

taxonomy_image_display_overview_form_submit()

File

./taxonomy_image.module, line 228
Implements a field formatter that can display image on referenced taxonomy terms.

Code

function taxonomy_image_form_field_ui_display_overview_form_alter(&$form, &$form_state, $form_id) {
  $form['#submit'][] = 'taxonomy_image_display_overview_form_submit';
}