You are here

function taxonomy_title_uninstall in Taxonomy Title 6

Same name and namespace in other branches
  1. 5 taxonomy_title.install \taxonomy_title_uninstall()
  2. 7 taxonomy_title.install \taxonomy_title_uninstall()

Implementation of hook_uninstall().

File

./taxonomy_title.install, line 18
Database set up and clean-up for taxonomy title module.

Code

function taxonomy_title_uninstall() {

  // Remove tables.
  drupal_uninstall_schema('taxonomy_title');
  variable_del('taxonomy_title_headings');
  variable_del('taxonomy_title_page_titles');
}