You are here

function apachesolr_autocomplete_uninstall in Apache Solr Autocomplete 7.2

Same name and namespace in other branches
  1. 6 apachesolr_autocomplete.install \apachesolr_autocomplete_uninstall()
  2. 7 apachesolr_autocomplete.install \apachesolr_autocomplete_uninstall()

Implements hook_uninstall().

File

./apachesolr_autocomplete.install, line 11
ApacheSolr Autocomplete module install, update and uninstall functions.

Code

function apachesolr_autocomplete_uninstall() {

  // Delete variables.
  variable_del('apachesolr_autocomplete_widget');
  variable_del('apachesolr_autocomplete_suggest_keywords');
  variable_del('apachesolr_autocomplete_suggest_spellcheck');
  variable_del('apachesolr_autocomplete_counts');
}