You are here

function taxo_faceted_navigation_uninstall in Taxonomy Facets 7

Implements hook_uninstall().

File

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

Code

function taxo_faceted_navigation_uninstall() {

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