You are here

function hs_taxonomy_uninstall in Hierarchical Select 6.3

Same name and namespace in other branches
  1. 7.3 modules/hs_taxonomy.install \hs_taxonomy_uninstall()

Implementation of hook_uninstall().

File

modules/hs_taxonomy.install, line 25
Install file for the Hierarchical Select Taxonomy module.

Code

function hs_taxonomy_uninstall() {

  // Remove any saved variables.
  db_query("DELETE FROM {variable} WHERE name = 'taxonomy_override_selector'");
  db_query("DELETE FROM {variable} WHERE name LIKE 'taxonomy_hierarchical_select_%'");
}