You are here

function _biblio_get_auth_type in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 biblio.module \_biblio_get_auth_type()
  2. 6 biblio.module \_biblio_get_auth_type()
  3. 7 biblio.module \_biblio_get_auth_type()
2 calls to _biblio_get_auth_type()
BiblioCrossRefClient::unixref_endElement in modules/crossref/biblio.crossref.client.php
_biblio_tagged_import in modules/endnote/biblio_tagged.module
Export data in tagged format.

File

./biblio.module, line 37

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);
}