Skip to content
Snippets Groups Projects
Commit 5dff7c3d authored by Gregor Gawol's avatar Gregor Gawol Committed by André Lahmann
Browse files

refs #8639:

* used publishDateSort
* used in result list and detail view
parent 4d900218
No related merge requests found
......@@ -33,7 +33,7 @@
<? endforeach; ?>
<? endif; ?>
<? $journalTitle = $this->driver->getContainerTitle(); $summDate = $this->driver->getPublicationDates(); ?>
<? $journalTitle = $this->driver->getContainerTitle(); $summDate = $this->driver->getPublishDateSort(); ?>
<? if (!empty($journalTitle)): ?>
<?=!empty($summAuthor) ? '<br />' : ''?>
<?=$this->transEsc('Published in')?>
......@@ -41,10 +41,10 @@
<? $containerID = $this->driver->getContainerRecordID(); ?>
<? /* TODO: handle highlighting more elegantly here: */?>
<a href="<?=($containerID ? $this->recordLink()->getUrl("$containerSource|$containerID") : $this->record($this->driver)->getLink('journaltitle', str_replace(array('{{{{START_HILITE}}}}', '{{{{END_HILITE}}}}'), '', $journalTitle)))?>"><?=$this->highlight($journalTitle) ?></a>
<?=!empty($summDate) ? ' (' . $this->escapeHtml($summDate[0]) . ')' : ''?>
<?=!empty($summDate) ? ' (' . $this->escapeHtml($summDate) . ')' : ''?>
<? elseif (!empty($summDate)): ?>
<?=!empty($summAuthor) ? '<br />' : ''?>
<?=$this->transEsc('Published') . ' ' . $this->escapeHtml($summDate[0])?>
<?=$this->transEsc('Published') . ' ' . $this->escapeHtml($summDate)?>
<? endif; ?>
<? $summInCollection = $this->driver->getContainingCollections(); if (!empty($summInCollection)): ?>
<? foreach ($summInCollection as $collId => $collText): ?>
......
......@@ -143,26 +143,31 @@ if($loggedin = $this->auth()->isLoggedIn()) {
</tr>
<? endif; ?>
<? $publications = $this->driver->getPublicationDetails(); if (!empty($publications)): ?>
<tr>
<th><?=$this->transEsc('Published')?>: </th>
<td>
<? foreach ($publications as $field): ?>
<span property="publisher" typeof="Organization">
<?
$publications = $this->driver->getPublicationDetails();
$pubDateSort = $this->driver->getPublishDateSort();
if (!empty($publications)): ?>
<tr>
<th><?=$this->transEsc('Published')?>: </th>
<td>
<? foreach ($publications as $field): ?>
<span property="publisher" typeof="Organization">
<? $pubPlace = $field->getPlace(); if (!empty($pubPlace)): ?>
<span property="location"><?=$this->escapeHtml($pubPlace)?></span>
<? endif; ?>
<? $pubName = $field->getName(); if (!empty($pubName)): ?>
<span property="name"><?=$this->escapeHtml($pubName)?></span>
<? endif; ?>
<? $pubName = $field->getName(); if (!empty($pubName)): ?>
<span property="name"><?=$this->escapeHtml($pubName)?></span>
<? endif; ?>
</span>
<? $pubDate = $field->getDate(); if (!empty($pubDate)): ?>
<span property="publicationDate"><?=$this->escapeHtml($pubDate)?></span>
<? endif; ?>
<br/>
<? endforeach; ?>
</td>
</tr>
<? $pubDate = $field->getDate(); if (!empty($pubDateSort)): ?>
<span property="publicationDate"><?=$this->escapeHtml($pubDateSort)?></span>
<? elseif (!empty($pubDate)): ?>
<span property="publicationDate"><?=$this->escapeHtml($pubDate)?></span>
<? endif; ?>
<br/>
<? endforeach; ?>
</td>
</tr>
<? endif; ?>
<? $edition = $this->driver->getEdition(); if (!empty($edition)): ?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment