You are here

function biblio_contributor_load in Bibliography Module 7.3

Same name and namespace in other branches
  1. 7.2 biblio.module \biblio_contributor_load()

Load a contributor.

1 call to biblio_contributor_load()
BiblioContributorUtility::getBiblioContributor in includes/BiblioContributorUtility.inc
Returns saved biblio contributor object; Returns an existing contributor if the given contributor was found, otherwise creates it first.
1 string reference to 'biblio_contributor_load'
biblio_entity_info in ./biblio.module
Implements hook_entity_info().

File

./biblio.module, line 728
Maintains bibliographic lists.

Code

function biblio_contributor_load($cid) {
  return entity_load_single('biblio_contributor', $cid);
}