You are here

function apachesolr_stats_uninstall in Apache Solr Statistics 6.3

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

Implementation of hook_uninstall().

File

./apachesolr_stats.install, line 18
Install, update and uninstall functions for the apachesolr_stats module.

Code

function apachesolr_stats_uninstall() {

  // Remove tables.
  drupal_uninstall_schema('apachesolr_stats');

  // Remove variables.
  variable_del('apachesolr_stats_enabled');
  variable_del('apachesolr_stats_flush_log_timer');
  variable_del('apachesolr_stats_ignore_ip_list');
  variable_del('apachesolr_stats_ignore_role_list');

  // Remove cached info.
  cache_clear_all('apachesolr_stats_block_frequent_keywords', 'cache_block');
}