$authors = $document->getAuthorNames();
$issue_date = $document->getIssueDate(true);
$identifiers = $document->getIdentifiers();
$url = $document->download_url ?? $document->document_url ?? '';
$is_search = !$document->csl_data;
?>
if ($is_search) : ?>
$description_fields = $document->getSearchDescription();
?>
= _('Suche in der Bibliothek') ?>
foreach ($description_fields as $field) : ?>
- = htmlReady($field) ?>
endforeach ?>
else : ?>
if ($format === 'full') : ?>
- = _('Titel') ?>
- = htmlReady($document->getTitle()) ?>
- = _('Typ') ?>
- = htmlReady($document->getType('display_name')) ?>
if (!empty($document->csl_data['issued']) || !empty($document->csl_data['publisher'])) : ?>
- = _('Veröffentlicht') ?>
- = htmlReady($document->csl_data['publisher'] . ' ' . $document->getIssueDate(true)) ?>
endif ?>
if (!empty($document->csl_data['medium'])) : ?>
- = _('Medium') ?>
- = htmlReady($document->csl_data['medium']) ?>
endif ?>
if (!empty($document->csl_data['author'])) : ?>
- = _('Erstellt von') ?>
- = htmlReady($document->getAuthorNames()) ?>
endif ?>
if (!empty($document->csl_data['URL'])) : ?>
- = _('URL') ?>
- = htmlReady($document->csl_data['URL']) ?>
endif ?>
if (!empty($document->csl_data['translator'][0]['family'])) : ?>
- = _('Übersetzer*in') ?>
-
foreach ($document->csl_data['translator'] as $index => $translator) : ?>
= $index > 0 ? ', ' : '' ?>
= htmlReady($translator['suffix'].' '.$translator['given'].' '.$translator['family']) ?>
endforeach ?>
endif ?>
if (!empty($document->csl_data['title-short'])) : ?>
- = _('Kurztitel') ?>
- = htmlReady($document->csl_data['title-short']) ?>
endif ?>
if (!empty($document->csl_data['source'])) : ?>
- = _('Quelle') ?>
- = htmlReady($document->csl_data['source']) ?>
endif ?>
if (!empty($document->csl_data['publisher-place'])) : ?>
- = _('Verlagsort') ?>
- = htmlReady($document->csl_data['publisher-place']) ?>
endif ?>
if (!empty($document->csl_data['number-of-volumes'])) : ?>
- = _('Bandanzahl') ?>
- = htmlReady($document->csl_data['number-of-volumes']) ?>
endif ?>
if (!empty($document->csl_data['number-of-pages'])) : ?>
- = _('Seitenanzahl') ?>
- = htmlReady($document->csl_data['number-of-pages']) ?>
endif ?>
if (!empty($document->csl_data['note'])) : ?>
- = _('Zusätzliche Information') ?>
- = htmlReady($document->csl_data['note']) ?>
endif ?>
if (!empty($document->csl_data['language'])) : ?>
- = _('Sprache') ?>
- = htmlReady($document->csl_data['language']) ?>
endif ?>
if (!empty($document->csl_data['issued'][0][0])) : ?>
- = _('Datum der Veröffentlichung der Ausgabe') ?>
- = htmlReady((!empty($document->csl_data['issued'][0][2]) ? $document->csl_data['issued'][0][2].'.' : '')
.(!empty($document->csl_data['issued'][0][1]) ? $document->csl_data['issued'][0][1].'.' : '')
.$document->csl_data['issued'][0][0]) ?>
endif ?>
if (!empty($document->csl_data['ISBN'])) : ?>
- = _('ISBN') ?>
- = htmlReady($document->csl_data['ISBN']) ?>
endif ?>
if (!empty($document->csl_data['event-place'])) : ?>
- = _('Veranstaltungsort') ?>
- = htmlReady($document->csl_data['event-place']) ?>
endif ?>
if (!empty($document->csl_data['editor'][0]['family'])) : ?>
- = _('Verfasser*in') ?>
-
foreach ($document->csl_data['editor'] as $index => $editor) : ?>
= $index > 0 ? ', ' : '' ?>
= htmlReady($editor['suffix'].' '.$editor['given'].' '.$editor['family']) ?>
endforeach ?>
endif ?>
if (!empty($document->csl_data['edition'])) : ?>
- = _('Auflagen') ?>
- = htmlReady($document->csl_data['edition']) ?>
endif ?>
if (!empty($document->csl_data['collection-title'])) : ?>
- = _('Sammlungstitel') ?>
- = htmlReady($document->csl_data['collection-title']) ?>
endif ?>
if (!empty($document->csl_data['collection-number'])) : ?>
- = _('Sammlungsnummer') ?>
- = htmlReady($document->csl_data['collection-number']) ?>
endif ?>
if (!empty($document->csl_data['collection-editor'][0]['family'])) : ?>
- = _('Sammlungseditor') ?>
-
foreach ($document->csl_data['collection-editor'] as $index => $editor) : ?>
= $index > 0 ? ', ' : '' ?>
= htmlReady($editor['suffix'].' '.$editor['given'].' '.$editor['family']) ?>
endforeach ?>
endif ?>
if (!empty($document->csl_data['call-number'])) : ?>
- = _('Signatur') ?>
- = htmlReady($document->csl_data['call-number']) ?>
endif ?>
if (!empty($document->csl_data['archive_location'])) : ?>
- = _('Speicherort im Archiv') ?>
- = htmlReady($document->csl_data['archive_location']) ?>
endif ?>
if (!empty($document->csl_data['archive'])) : ?>
- = _('Archiv') ?>
- = htmlReady($document->csl_data['archive']) ?>
endif ?>
if (!empty($document->csl_data['accessed'][0][0])) : ?>
- = _('Zugriffsdatum') ?>
- = htmlReady((!empty($document->csl_data['accessed'][0][2]) ? $document->csl_data['accessed'][0][2].'.' : '')
.(!empty($document->csl_data['accessed'][0][1]) ? $document->csl_data['accessed'][0][1].'.' : '')
.$document->csl_data['accessed'][0][0]) ?>
endif ?>
if (!empty($document->csl_data['abstract'])) : ?>
- = _('Inhaltsangabe') ?>
- = htmlReady($document->csl_data['abstract']) ?>
endif ?>
if ($document->catalog) : ?>
- = _('Katalog') ?>
if ($document->opac_link) : ?>
- = htmlReady($document->catalog) ?>
else : ?>
- = htmlReady($document->catalog) ?>
endif ?>
endif ?>
endif ?>
endif ?>