You are here

private function BiblioStyleEndNoteTagged::importEntryContributors in Bibliography Module 7.3

Create Biblio Contributor entities.

File

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

Class

BiblioStyleEndNoteTagged
@file EndNote tagged biblio style.

Code

private function importEntryContributors($wrapper, $tag, $value) {

  // The role is in the map.
  $map = $this
    ->getMapping();
  $role = $map['field'][$tag]['role'];
  $biblio = $wrapper
    ->value();
  $biblio
    ->addContributors($value, $role);
}