You are here

public function BiblioStyleEndNoteTagged::renderEntryKeywords in Bibliography Module 7.3

File

plugins/biblio_style/endnote/BiblioStyleEndNoteTagged.php, line 135
EndNote tagged biblio style.

Class

BiblioStyleEndNoteTagged
@file EndNote tagged biblio style.

Code

public function renderEntryKeywords(&$output = array(), EntityMetadataWrapper $wrapper, $tag) {
  foreach ($wrapper->biblio_keywords as $sub_wrapper) {
    $output[] = "%K " . $sub_wrapper
      ->label();
  }
}