You are here

public function BiblioStyleBibtex::formatFiles in Bibliography Module 7.3

File format entry.

Parameters

EntityMetadataWrapper $wrapper: The wrapper object.

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

Return value

string The value of the property.

File

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

Class

BiblioStyleBibtex
@file BibTeX style.

Code

public function formatFiles(EntityMetadataWrapper $wrapper, $key) {
  if ($url = parent::renderEntryFiles($wrapper, $key)) {
    return implode(' , ', $url);
  }
}