You are here

function en7_type_map in Bibliography Module 6

1 call to en7_type_map()
en7_characterData in ./endnote7_parser.inc

File

./endnote7_parser.inc, line 118

Code

function en7_type_map($entype) {
  static $map = array();
  if (empty($map)) {
    module_load_include('inc', 'biblio', 'biblio.type.mapper');
    $map = biblio_get_type_map('endnote7');
  }
  return isset($map[$entype]) ? $map[$entype] : 129;

  //return the biblio type or 129 (Misc) if type not found
}