You are here

taxonomy_facets.install in Taxonomy Facets 7.3

Same filename and directory in other branches
  1. 8 taxonomy_facets.install
  2. 7.2 taxonomy_facets.install

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

File

taxonomy_facets.install
View source
<?php

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

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

Functions

Namesort descending Description
taxonomy_facets_uninstall Implements hook_uninstall().