function biblio_xml_uninstall in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/endnote/biblio_xml.install \biblio_xml_uninstall()
- 7.2 modules/endnote/biblio_xml.install \biblio_xml_uninstall()
File
- modules/
endnote/ biblio_xml.install, line 18 - Database table creation for biblio_xml module.
Code
function biblio_xml_uninstall() {
if (db_table_exists('biblio_type_maps')) {
db_delete('biblio_type_maps')
->condition('format', 'endnote8')
->execute();
db_delete('biblio_type_maps')
->condition('format', 'endnote7')
->execute();
}
}