You are here

function biblio_tagged_node_insert in Bibliography Module 7

Same name and namespace in other branches
  1. 7.2 modules/endnote/biblio_tagged.module \biblio_tagged_node_insert()

File

modules/endnote/biblio_tagged.module, line 126

Code

function biblio_tagged_node_insert($node) {
  if ($node->type != 'biblio' || !isset($node->biblio_tagged_md5)) {
    return;
  }
  drupal_write_record('biblio_tagged', $node);
}