Skip to content

Commit

Permalink
pkp/pkp-lib#9877 Provide book DOI via OMP OAI
Browse files Browse the repository at this point in the history
  • Loading branch information
bozana committed Jul 15, 2024
1 parent b4a61ff commit e188be7
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,11 @@ public function extractMetadataFromDataObject(&$publicationFormat)
if ($doi) {
$dc11Description->addStatement('dc:identifier', $doi);
}

$publicationDoi = $publication->getData('doiObject');
if ($publicationDoi) {
$dc11Description->addStatement('dc:relation', $publicationDoi->getData('doi'));
}
}

// Identifier: others
Expand Down

0 comments on commit e188be7

Please sign in to comment.