You are here

function biblio_bibtex_uninstall in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/bibtexParse/biblio_bibtex.install \biblio_bibtex_uninstall()
  2. 7.2 modules/bibtexParse/biblio_bibtex.install \biblio_bibtex_uninstall()

File

modules/bibtexParse/biblio_bibtex.install, line 18
Database table creation for biblio_bibtex module.

Code

function biblio_bibtex_uninstall() {
  if (db_table_exists('biblio_type_maps')) {
    db_delete('biblio_type_maps')
      ->condition('format', 'bibtex')
      ->execute();
  }
}