You are here

function taxonomy_facets_uninstall in Taxonomy Facets 7.2

Same name and namespace in other branches
  1. 7.3 taxonomy_facets.install \taxonomy_facets_uninstall()

Implements hook_uninstall().

File

./taxonomy_facets.install, line 10
Install, update, and uninstall functions for Taxo faceted Navigation module.

Code

function taxonomy_facets_uninstall() {

  // Delete all the taxo faceted variables and then clear the variable cache.
  db_query("DELETE FROM {variable} WHERE name LIKE 'taxonomy_facets%'");
  cache_clear_all('variables', 'cache');
}