You are here

function _biblio_get_auth_type in Bibliography Module 7

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.2 biblio.module \_biblio_get_auth_type()
4 calls to _biblio_get_auth_type()
BiblioCrossRefClient::unixref_endElement in modules/crossref/biblio.crossref.client.php
_biblio_bibtex_import in modules/bibtexParse/biblio_bibtex.module
_biblio_ris_parse_line in modules/RIS/biblio_ris.module
_biblio_tagged_import in modules/endnote/biblio_tagged.module
Export data in tagged format.

File

./biblio.module, line 27
Bibliography Module for Drupal.

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