You are here

function _biblio_get_auth_type in Bibliography Module 6

Same name and namespace in other branches
  1. 6.2 biblio.module \_biblio_get_auth_type()
  2. 7 biblio.module \_biblio_get_auth_type()
  3. 7.2 biblio.module \_biblio_get_auth_type()
6 calls to _biblio_get_auth_type()
en7_endElement in ./endnote7_parser.inc
en8_characterData in ./endnote8_parser.inc
PARSEENTRIES::bib2node in bibtexParse/PARSEENTRIES.php
unixref_endElement in ./crossref_unixref_parser.inc
_endnote_tagged_import in ./tagged_parser.inc
Copyright (C) 2006 Ron Jerome

... See full list

File

./biblio.module, line 36

Code

function _biblio_get_auth_type($auth_category, $biblio_type) {
  $result = (array) _biblio_get_auth_types($auth_category, $biblio_type);

  // return first element of the array
  return empty($result) ? NULL : current($result);
}