You are here

function taxonomy_edge_uninstall in Taxonomy Edge 8

Same name and namespace in other branches
  1. 6 taxonomy_edge.install \taxonomy_edge_uninstall()
  2. 7.2 taxonomy_edge.install \taxonomy_edge_uninstall()
  3. 7 taxonomy_edge.install \taxonomy_edge_uninstall()

Implements hook_uninstall().

File

./taxonomy_edge.install, line 26
Installation file for Taxonomy Edge

Code

function taxonomy_edge_uninstall() {
  db_drop_index('node', 'idx_taxonomy_edge');
  drupal_set_message(st('Taxonomy Edge is now uninstalled. You may remove the provided patch to the core module Taxonomy module if applicable.'));
}