You are here

function xmlsitemap_taxonomy_uninstall in XML sitemap 6

Same name and namespace in other branches
  1. 6.2 xmlsitemap_taxonomy/xmlsitemap_taxonomy.install \xmlsitemap_taxonomy_uninstall()
  2. 7.2 xmlsitemap_taxonomy/xmlsitemap_taxonomy.install \xmlsitemap_taxonomy_uninstall()

Implementation of hook_uninstall().

File

xmlsitemap_taxonomy/xmlsitemap_taxonomy.install, line 282
Installation file for XML sitemap term.

Code

function xmlsitemap_taxonomy_uninstall() {
  drupal_uninstall_schema('xmlsitemap_taxonomy');
  db_query("DELETE FROM {variable} WHERE name LIKE 'xmlsitemap\\_taxonomy\\_%'");
}