You are here

function biblio_xml_uninstall in Bibliography Module 6.2

Same name and namespace in other branches
  1. 7 modules/endnote/biblio_xml.install \biblio_xml_uninstall()
  2. 7.2 modules/endnote/biblio_xml.install \biblio_xml_uninstall()

File

modules/endnote/biblio_xml.install, line 39
Database table creation for biblio_xml module.

Code

function biblio_xml_uninstall() {
  drupal_uninstall_schema('biblio_xml');
  if (db_table_exists('biblio_type_maps')) {
    update_sql("DELETE FROM {biblio_type_maps} WHERE format = 'endnote8'");
    update_sql("DELETE FROM {biblio_type_maps} WHERE format = 'endnote7'");
  }
}