$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 ($document->csl_data['issued'] || $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 ($document->csl_data['author']) : ?>
- = _('Erstellt von') ?>
- = htmlReady($document->getAuthorNames()) ?>
endif ?>
if ($document->catalog) : ?>
- = _('Katalog') ?>
if ($document->opac_link) : ?>
- = htmlReady($document->catalog) ?>
else : ?>
- = htmlReady($document->catalog) ?>
endif ?>
endif ?>
endif ?>
endif ?>