private function BiblioStyleBibtex::formatContributorAuthor in Bibliography Module 7.3
Author contributor format entry.
Parameters
EntityMetadataWrapper $wrapper: The wrapper object.
$key: The property name which holds the value of the field.
Return value
string
File
- plugins/
biblio_style/ bibtex/ BiblioStyleBibtex.class.php, line 487 - BibTeX style.
Class
- BiblioStyleBibtex
- @file BibTeX style.
Code
private function formatContributorAuthor(EntityMetadataWrapper $wrapper, $key) {
return $this
->formatContributor($wrapper, $key, 'author');
}