function biblio_bibtex_uninstall in Bibliography Module 7.2
Same name and namespace in other branches
- 6.2 modules/bibtexParse/biblio_bibtex.install \biblio_bibtex_uninstall()
- 7 modules/bibtexParse/biblio_bibtex.install \biblio_bibtex_uninstall()
File
- modules/
bibtexParse/ biblio_bibtex.install, line 14 - 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();
}
}