You are here

function apachesolr_form_field_ui_field_overview_form_alter in Apache Solr Search 7

Same name and namespace in other branches
  1. 8 apachesolr.module \apachesolr_form_field_ui_field_overview_form_alter()
  2. 6.3 apachesolr.module \apachesolr_form_field_ui_field_overview_form_alter()

Implements hook_form_[form_id]_alter(). (D7)

Make sure to flush cache when fields are added.

File

./apachesolr.module, line 1040
Integration with the Apache Solr search application.

Code

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