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