You are here

apachesolr_autocomplete.install in Apache Solr Autocomplete 6

Same filename and directory in other branches
  1. 7.2 apachesolr_autocomplete.install
  2. 7 apachesolr_autocomplete.install

ApacheSolr Autocomplete module install, update and uninstall functions.

File

apachesolr_autocomplete.install
View source
<?php

/**
 * @file
 * ApacheSolr Autocomplete module install, update and uninstall functions.
 */

/**
 * Implements hook_uninstall().
 */
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');
}

Functions