You are here

function _endnote_XML_export in Bibliography Module 5

1 call to _endnote_XML_export()
_biblio_export in ./biblio.module

File

./biblio.module, line 2612

Code

function _endnote_XML_export($results, $version = 7) {
  if ($version == 8) {
    require_once drupal_get_path('module', 'biblio') . '/endnote8_export.inc';
    $xml = _endnote8_XML_export($result);
  }
  elseif ($version == 7) {
    require_once drupal_get_path('module', 'biblio') . '/endnote7_export.inc';
    $xml = _endnote7_XML_export($results);
  }
  return $xml;
}