You are here

private function BiblioStyleBibtex::formatGeneric in Bibliography Module 7.3

Generic format entry.

Parameters

EntityMetadataWrapper $wrapper: The wrapper object.

$key: The property name which holds the value of the field.

Return value

The value of the property.

File

plugins/biblio_style/bibtex/BiblioStyleBibtex.class.php, line 326
BibTeX style.

Class

BiblioStyleBibtex
@file BibTeX style.

Code

private function formatGeneric(EntityMetadataWrapper $wrapper, $key) {
  return $wrapper->{$key}
    ->value();
}