You are here

function biblio_bibtex_node_insert in Bibliography Module 7

File

modules/bibtexParse/biblio_bibtex.module, line 187

Code

function biblio_bibtex_node_insert($node) {
  if ($node->type != 'biblio') {
    return;
  }
  if (!isset($node->biblio_bibtex_md5)) {
    return;
  }
  drupal_write_record('biblio_bibtex', $node);
}