You are here

function search_api_solr_update_8204 in Search API Solr 4.x

Same name and namespace in other branches
  1. 8.3 search_api_solr.install \search_api_solr_update_8204()
  2. 8.2 search_api_solr.install \search_api_solr_update_8204()

Enable phrase suggestions support.

File

./search_api_solr.install, line 619
Install, update and uninstall functions for the Search API Solr module.

Code

function search_api_solr_update_8204() {
  foreach (search_api_solr_update_helper_get_backend_configs() as $server_name => $backend_config) {
    if (!isset($backend_config['suggest_phrases'])) {
      $backend_config['suggest_phrases'] = FALSE;
      search_api_solr_update_helper_save_backend_config($server_name, $backend_config);
    }
  }
}