You are here

taxo_faceted_navigation.install in Taxonomy Facets 7

Install, update, and uninstall functions for Taxo faceted Navigation module.

File

taxo_faceted_navigation.install
View source
<?php

/**
 * @file
 * Install, update, and uninstall functions for Taxo faceted Navigation module.
 */

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

Functions