function apachesolr_autocomplete_uninstall in Apache Solr Autocomplete 6
Same name and namespace in other branches
- 7.2 apachesolr_autocomplete.install \apachesolr_autocomplete_uninstall()
- 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');
}