You are here

function hs_taxonomy_uninstall in Hierarchical Select 7.3

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

Implementation of hook_uninstall().

File

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

Code

function hs_taxonomy_uninstall() {
  db_delete('variable')
    ->condition('name', 'taxonomy_hierarchical_select_%', 'LIKE')
    ->execute();
  variable_del('taxonomy_override_selector');
}