You are here

function biblio_bibtex_entity_delete in Bibliography Module 7.2

File

modules/bibtexParse/biblio_bibtex.module, line 150

Code

function biblio_bibtex_entity_delete($entity, $type) {
  if ($type != 'biblio') {
    return;
  }
  db_delete('biblio_bibtex')
    ->condition('bid', $entity->bid)
    ->execute();
}