taxo_faceted_navigation.install in Taxonomy Facets 7
Install, update, and uninstall functions for Taxo faceted Navigation module.
File
taxo_faceted_navigation.installView 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
Name | Description |
---|---|
taxo_faceted_navigation_uninstall | Implements hook_uninstall(). |