|
Lines 185-193
class CrossRefExportDom {
|
Link Here
|
|---|
|
| 185 |
} |
185 |
} |
| 186 |
XMLCustomWriter::appendChild($journalArticleNode, $contributorsNode); |
186 |
XMLCustomWriter::appendChild($journalArticleNode, $contributorsNode); |
| 187 |
|
187 |
|
| 188 |
/* publication date of issue */ |
188 |
/* publication date of article */ |
| 189 |
if ($issue->getDatePublished()) { |
189 |
if ($article->getDatePublished()) { |
| 190 |
$publicationDateNode =& CrossRefExportDom::generatePublisherDateDom($doc, $issue->getDatePublished()); |
190 |
$publicationDateNode =& CrossRefExportDom::generatePublisherDateDom($doc, $article->getDatePublished()); |
| 191 |
XMLCustomWriter::appendChild($journalArticleNode, $publicationDateNode); |
191 |
XMLCustomWriter::appendChild($journalArticleNode, $publicationDateNode); |
| 192 |
} |
192 |
} |
| 193 |
|
193 |
|