You are here

function biblio_xml_node_insert in Bibliography Module 7.2

Same name and namespace in other branches
  1. 7 modules/endnote/biblio_xml.module \biblio_xml_node_insert()

File

modules/endnote/biblio_xml.module, line 89

Code

function biblio_xml_node_insert($node) {
  if ($node->type != 'biblio' || !isset($node->biblio_xml_md5)) {
    return;
  }
  drupal_write_record('biblio_xml', $node);
}