You are here

function apachesolr_confgen_textfiles_variable_update in Apache Solr Config Generator 7

Same name and namespace in other branches
  1. 6 apachesolr_confgen_textfiles/apachesolr_confgen_textfiles.module \apachesolr_confgen_textfiles_variable_update()

Implements hook_variable_update().

File

apachesolr_confgen_textfiles/apachesolr_confgen_textfiles.module, line 48
@author Markus Kalkbrenner (mkalkbrenner) | bio.logis GmbH

Code

function apachesolr_confgen_textfiles_variable_update($name, $value, $old_value, $options) {
  switch ($name) {
    case 'apachesolr_confgen_textfiles_admin_extra_html':
    case 'apachesolr_confgen_textfiles_mapping_isolatin1accent_txt':
    case 'apachesolr_confgen_textfiles_compoundwords_txt':
    case 'apachesolr_confgen_textfiles_protwords_txt':
    case 'apachesolr_confgen_textfiles_stopwords_txt':
    case 'apachesolr_confgen_textfiles_synonyms_txt':
      apachesolr_confgen_message_new_config($name, $value, $old_value, $options);
      break;
  }
}