From e92db90d1b68660c74d6875d1f3a1b2af3ad03f9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andr=C3=A9=20Lahmann?= <lahmann@ub.uni-leipzig.de>
Date: Fri, 28 Oct 2016 16:08:43 +0200
Subject: [PATCH] refs #8918: * added changes in de_15 description tab to finc
 description tab and RecordDriver core templates (refs #9506 #9503 #9508 #9516
 #9517)

---
 local/languages/de.ini                        |   8 +-
 local/languages/en.ini                        |   6 +-
 .../RecordDriver/SolrDefault/core.phtml       | 167 +++++++++----
 .../RecordDriver/SolrMarc/core.phtml          | 219 ++++++++++--------
 .../templates/RecordTab/description.phtml     |  17 +-
 5 files changed, 276 insertions(+), 141 deletions(-)

diff --git a/local/languages/de.ini b/local/languages/de.ini
index 6d4a7ebbc01..d472f6bda34 100644
--- a/local/languages/de.ini
+++ b/local/languages/de.ini
@@ -464,7 +464,7 @@ Performer = Interpreten
 Permanent Checked Out Items = "Längerfristige Ausleihen"
 Phone Number = Telefon
 Physical = Umfang
-Physical Description = Beschreibung
+Physical Description = Umfang
 Place = Ort
 Place a Hold = Bestellen
 Playing Time = Spieldauer
@@ -1843,4 +1843,8 @@ Work Part Title = "Teilwerktitel"
 Dates of publication = "Erscheinungsverlauf"
 
 ; #9245 holdings tab access
-external_access = "Dieser Titel ist verfügbar in"
\ No newline at end of file
+external_access = "Dieser Titel ist verfügbar in"
+
+# 8918
+Authors/Corporations = "Personen und Körperschaften"
+rda_original_title = "Werktitel"
\ No newline at end of file
diff --git a/local/languages/en.ini b/local/languages/en.ini
index 027870f2900..370df833403 100644
--- a/local/languages/en.ini
+++ b/local/languages/en.ini
@@ -1784,4 +1784,8 @@ Work Part Title = "Work Part Title"
 Dates of publication = "Dates of publication"
 
 ; #9245 holdings tab access
-external_access = "Title is available in"
\ No newline at end of file
+external_access = "Title is available in"
+
+# 8918
+Authors/Corporations = "Authors and Corporations"
+rda_original_title = "Title of Work"
\ No newline at end of file
diff --git a/themes/finc/templates/RecordDriver/SolrDefault/core.phtml b/themes/finc/templates/RecordDriver/SolrDefault/core.phtml
index ada7aa34362..4684a545be9 100644
--- a/themes/finc/templates/RecordDriver/SolrDefault/core.phtml
+++ b/themes/finc/templates/RecordDriver/SolrDefault/core.phtml
@@ -102,34 +102,69 @@ if($loggedin = $this->auth()->isLoggedIn()) {
       </tr>
       <? endif; ?>
 
-      <? $authors = $this->driver->getDeduplicatedAuthors(); ?>
-      <? if (isset($authors['main']) && !empty($authors['main'])): ?>
-      <tr>
-        <th><?=$this->transEsc(count($authors['main']) > 1 ? 'Main Authors' : 'Main Author')?>: </th>
-        <td>
-          <? $i = 0; foreach ($authors['main'] as $author => $roles): ?><?=($i++ == 0)?'':', '?><span property="author"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
-        </td>
-      </tr>
+      <? /* finc specific rows - Start */ ?>
+      <? $authors = $this->driver->getDeduplicatedAuthors(); if ((isset($authors['main']) && count($authors['main'])) || (isset($authors['secondary']) && count($authors['secondary'])) || (isset($authors['corporate']) && count($authors['corporate'])) || (isset($authors['corporate_secondary']) && count($authors['corporate_secondary']))): ?>
+        <tr>
+          <th><?=$this->transEsc('Authors/Corporations')?>: </th>
+          <td>
+            <? if (isset($authors['main']) && count($authors['main'])): ?>
+              <? $i = 0; foreach ($authors['main'] as $author => $roles): ?><?=($i++ == 0)?'':'; '?><span property="author"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?><?=count($authors['main_orig'][$author])?" / ".array_pop($authors['main_orig'][$author]):''?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
+            <? endif; ?>
+            <? if (isset($authors['secondary']) && count($authors['secondary'])): ?>
+              <?=count($authors['main'])?'; ':''?>
+              <? $i = 0; foreach ($authors['secondary'] as $author => $roles): ?><?=($i++ == 0)?'':'; '?><span property="contributor"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?><?=count($authors['secondary_orig'][$author])?" / ".array_pop($authors['secondary_orig'][$author]):''?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
+            <? endif; ?>
+            <? if (isset($authors['corporate']) && count($authors['corporate'])): ?>
+              <?=count($authors['main'])||count($authors['secondary'])?'; ':''?>
+              <? $i = 0; foreach ($authors['corporate'] as $author => $roles): ?><?=($i++ == 0)?'':'; '?><span property="creator"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?><?=count($authors['corporate_orig'][$author])?" / ".array_pop($authors['corporate_orig'][$author]):''?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
+            <? endif; ?>
+            <? if (isset($authors['corporate_secondary']) && count($authors['corporate_secondary'])): ?>
+              <?=count($authors['main'])||count($authors['secondary'])||count($authors['corporate'])?'; ':''?>
+              <? $i = 0; foreach ($authors['corporate_secondary'] as $author => $roles): ?><?=($i++ == 0)?'':'; '?><span property="contributor"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?><?=count($authors['corporate_secondary_orig'][$author])?" / ".array_pop($authors['corporate_secondary_orig'][$author]):''?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
+            <? endif; ?>
+          </td>
+        </tr>
       <? endif; ?>
 
-      <? if (isset($authors['corporate']) && !empty($authors['corporate'])): ?>
-      <tr>
-        <th><?=$this->transEsc(count($authors['corporate']) > 1 ? 'Corporate Author' : 'Corporate Authors')?>: </th>
-        <td>
-          <? $i = 0; foreach ($authors['corporate'] as $corporate => $roles): ?><?=($i++ == 0)?'':', '?><span property="creator"><a href="<?=$this->record($this->driver)->getLink('author', $corporate)?>"><?=$this->escapeHtml($corporate)?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
-        </td>
-      </tr>
+      <? $titleDetails = $this->driver->getTitleDetails(); if (!empty($titleDetails)): ?>
+        <tr>
+          <th><?=$this->transEsc('Title')?>: </th>
+          <td property="title">
+            <? $i = 0; foreach ($titleDetails as $title): ?>
+              <?=($i > 0 ? '<br />':'')?><?=$this->escapeHtml($title)?><? $i++ ;?>
+            <? endforeach; ?>
+          </td>
+        </tr>
+      <? else: ?>
+        <tr>
+          <th><?=$this->transEsc('Title')?>: </th>
+          <td property="title"><?=$this->escapeHtml($this->driver->getShortTitle() . '  ' . $this->driver->getSubtitle() . '  ' . $this->driver->getTitleSection()) . ($this->driver->getTitleStatement() ? ' / ' . $this->driver->getTitleStatement() : '')?><br /><?=($this->driver->tryMethod('getTitleOrig') && $this->driver->getTitleOrig() != '' ? $this->escapeHtml($this->driver->getTitleOrig()) : '')?></td>
+        </tr>
       <? endif; ?>
 
-      <? if (isset($authors['secondary']) && !empty($authors['secondary'])): ?>
-      <tr>
-        <th><?=$this->transEsc('Other Authors')?>: </th>
-        <td>
-          <? $i = 0; foreach ($authors['secondary'] as $author => $roles): ?><?=($i++ == 0)?'':', '?><span property="contributor"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
-        </td>
-      </tr>
+      <? $titleUniform = $this->driver->getTitleUniform(); ?>
+      <? if (!empty($titleUniform)): ?>
+        <tr>
+          <th><?=$this->driver->isRDA()?$this->transEsc('rda_original_title'):$this->transEsc('non_rda_original_title')?>: </th>
+          <td><a href="<?=$this->record($this->driver)->getLink('title', $titleUniform)?>"><?=$this->escapeHtml($titleUniform)?></a></td>
+        </tr>
       <? endif; ?>
 
+      <? $edition = $this->driver->getEdition(); if (!empty($edition)): ?>
+        <tr>
+          <th><?=$this->transEsc('Edition')?>: </th>
+          <td property="bookEdition"><?=$this->escapeHtml($edition)?><? $editionOrig = $this->driver->getEditionOrig(); if (!empty($editionOrig)): ?><br /><?=$this->escapeHtml($editionOrig)?><? endif; ?></td>
+        </tr>
+      <? endif; ?>
+
+      <? $dissertationNote = $this->driver->getDissertationNote(); if (!empty($dissertationNote)): ?>
+        <tr>
+          <th><?=$this->transEsc('Dissertation Note')?>: </th>
+          <td><?=$dissertationNote?></td>
+        </tr>
+      <? endif; ?>
+      <? /* finc specific rows - END */  ?>
+
       <? $formats = $this->driver->getFormats(); if (!empty($formats)): ?>
         <tr>
           <th><?=$this->transEsc('Format')?>: </th>
@@ -173,30 +208,19 @@ if($loggedin = $this->auth()->isLoggedIn()) {
       </tr>
       <? endif; ?>
 
-      <?/* Display series section if at least one series exists. */?>
-      <? $series = $this->driver->getSeries(); if (!empty($series)): ?>
-      <tr>
-        <th><?=$this->transEsc('Series')?>: </th>
-        <td>
-          <? foreach ($series as $field): ?>
-            <?/* Depending on the record driver, $field may either be an array with
-               "name" and "number" keys or a flat string containing only the series
-               name.  We should account for both cases to maximize compatibility. */?>
-            <? if (is_array($field)): ?>
-              <? if (!empty($field['name'])): ?>
-                <a href="<?=$this->record($this->driver)->getLink('series', $field['name'])?>"><?=$this->escapeHtml($field['name'])?></a>
-                <? if (!empty($field['number'])): ?>
-                  <?=$this->escapeHtml($field['number'])?>
-                <? endif; ?>
-                <br/>
-              <? endif; ?>
-            <? else: ?>
-              <a href="<?=$this->record($this->driver)->getLink('series', $field)?>"><?=$this->escapeHtml($field)?></a><br/>
-            <? endif; ?>
-          <? endforeach; ?>
-        </td>
-      </tr>
+      <? /* finc specific row - replaces series - Start */ ?>
+      <? $hierarchyParentTitle = $this->driver->getHierarchyParentTitle(); if (!empty($hierarchyParentTitle) && empty($series)): ?>
+        <tr>
+          <th><?=$this->transEsc('Set Multipart')?>: </th>
+          <td>
+            <? $hierarchyParentId = $this->driver->getHierarchyParentID(); ?>
+            <? foreach ($hierarchyParentTitle as $key=>$hTitle): ?>
+              <? if(isset($hierarchyParentId[$key])): ?><a href="<?=$this->recordLink()->getUrl($hierarchyParentId[$key])?>"><? endif; ?><?=$this->escapeHtml($hTitle)?><? if(isset($hierarchyParentId[$key])): ?></a><? endif; ?><br/>
+            <? endforeach; ?>
+          </td>
+        </tr>
       <? endif; ?>
+      <? /* finc specific row - replaces series - End */ ?>
 
       <? $subjects = $this->driver->getAllSubjectHeadings(); if (!empty($subjects)): ?>
       <tr>
@@ -293,6 +317,59 @@ if($loggedin = $this->auth()->isLoggedIn()) {
           </td>
         </tr>
       <? endif; ?>
+
+      <? /* finc specific rows - Start */ ?>
+      <? $hierarchyParentTitle = $this->driver->getHierarchyParentTitle(); if (!empty($hierarchyParentTitle) && empty($series)): ?>
+        <tr>
+          <th><?=$this->transEsc('Set Multipart')?>: </th>
+          <td>
+            <? $hierarchyParentId = $this->driver->getHierarchyParentID(); ?>
+            <? foreach ($hierarchyParentTitle as $key=>$hTitle): ?>
+              <? if(isset($hierarchyParentId[$key])): ?><a href="<?=$this->recordLink()->getUrl($hierarchyParentId[$key])?>"><? endif; ?><?=$this->escapeHtml($hTitle)?><? if(isset($hierarchyParentId[$key])): ?></a><? endif; ?><br/>
+            <? endforeach; ?>
+          </td>
+        </tr>
+      <? endif; ?>
+
+      <? $megaCollection = (array) $this->driver->tryMethod('getMegaCollection'); if (!empty($megaCollection)): ?>
+        <tr>
+          <th><?=$this->transEsc('Source')?>: </th>
+          <td>
+            <? foreach ($megaCollection as $field): ?>
+              <?=$this->escapeHtml($field)?><br/>
+            <? endforeach; ?>
+          </td>
+        </tr>
+      <? endif; ?>
+
+      <? $otherRelationshipEntry = (array) $this->driver->tryMethod('getOtherRelationshipEntry'); if (!empty($otherRelationshipEntry)): ?>
+        <? foreach ($otherRelationshipEntry as $key => $values): ?>
+          <tr>
+            <th><?=$this->transEsc($key)?>: </th>
+            <td>
+              <? foreach ($values as $value): ?>
+                <? if (!empty($value['link']) && $recordLink = $this->RecordLink()->getRecordLink($value['link'], 'record_id')): ?>
+                  <a href="<?=$recordLink?>"><?=$this->escapeHtml($value['text'])?></a><br/>
+                <? else: ?>
+                  <?=$this->escapeHtml($value['text'])?><br/>
+                <? endif; ?>
+              <? endforeach; ?>
+            </td>
+          </tr>
+        <? endforeach; ?>
+      <? endif; ?>
+
+      <? $additionalNotes = (array) $this->driver->tryMethod('getAdditionalNotes'); if (!empty($additionalNotes)): ?>
+        <tr>
+          <th><?=$this->transEsc('Notes')?>: </th>
+          <td>
+            <? foreach ($additionalNotes as $note): ?>
+              <?=$this->escapeHtml($note)?><br/>
+            <? endforeach; ?>
+          </td>
+        </tr>
+      <? endif; ?>
+      <? /* finc specific rows - End */ ?>
     </table>
     <?/* End Main Details */?>
   </div>
diff --git a/themes/finc/templates/RecordDriver/SolrMarc/core.phtml b/themes/finc/templates/RecordDriver/SolrMarc/core.phtml
index edde5682a6e..4eb5770f38d 100644
--- a/themes/finc/templates/RecordDriver/SolrMarc/core.phtml
+++ b/themes/finc/templates/RecordDriver/SolrMarc/core.phtml
@@ -102,34 +102,93 @@ if($loggedin = $this->auth()->isLoggedIn()) {
       </tr>
       <? endif; ?>
 
-      <? $authors = $this->driver->getDeduplicatedAuthors(); ?>
-      <? if (isset($authors['main']) && !empty($authors['main'])): ?>
-      <tr>
-          <th><?=$this->transEsc(count($authors['main']) > 1 ? 'Main Authors' : 'Main Author')?>: </th>
+      <? /* finc specific rows - Start */ ?>
+      <? $authors = $this->driver->getDeduplicatedAuthors(); if ((isset($authors['main']) && count($authors['main'])) || (isset($authors['secondary']) && count($authors['secondary'])) || (isset($authors['corporate']) && count($authors['corporate'])) || (isset($authors['corporate_secondary']) && count($authors['corporate_secondary']))): ?>
+        <tr>
+          <th><?=$this->transEsc('Authors/Corporations')?>: </th>
           <td>
-            <? $i = 0; foreach ($authors['main'] as $author => $roles): ?><?=($i++ == 0)?'':', '?><span property="author"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
+            <? if (isset($authors['main']) && count($authors['main'])): ?>
+              <? $i = 0; foreach ($authors['main'] as $author => $roles): ?><?=($i++ == 0)?'':'; '?><span property="author"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?><?=count($authors['main_orig'][$author])?" / ".array_pop($authors['main_orig'][$author]):''?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
+            <? endif; ?>
+            <? if (isset($authors['secondary']) && count($authors['secondary'])): ?>
+              <?=count($authors['main'])?'; ':''?>
+              <? $i = 0; foreach ($authors['secondary'] as $author => $roles): ?><?=($i++ == 0)?'':'; '?><span property="contributor"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?><?=count($authors['secondary_orig'][$author])?" / ".array_pop($authors['secondary_orig'][$author]):''?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
+            <? endif; ?>
+            <? if (isset($authors['corporate']) && count($authors['corporate'])): ?>
+              <?=count($authors['main'])||count($authors['secondary'])?'; ':''?>
+              <? $i = 0; foreach ($authors['corporate'] as $author => $roles): ?><?=($i++ == 0)?'':'; '?><span property="creator"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?><?=count($authors['corporate_orig'][$author])?" / ".array_pop($authors['corporate_orig'][$author]):''?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
+            <? endif; ?>
+            <? if (isset($authors['corporate_secondary']) && count($authors['corporate_secondary'])): ?>
+              <?=count($authors['main'])||count($authors['secondary'])||count($authors['corporate'])?'; ':''?>
+              <? $i = 0; foreach ($authors['corporate_secondary'] as $author => $roles): ?><?=($i++ == 0)?'':'; '?><span property="contributor"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?><?=count($authors['corporate_secondary_orig'][$author])?" / ".array_pop($authors['corporate_secondary_orig'][$author]):''?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
+            <? endif; ?>
           </td>
-      </tr>
+        </tr>
       <? endif; ?>
 
-      <? if (isset($authors['corporate']) && !empty($authors['corporate'])): ?>
-      <tr>
-          <th><?=$this->transEsc(count($authors['corporate']) > 1 ? 'Corporate Author' : 'Corporate Authors')?>: </th>
-          <td>
-            <? $i = 0; foreach ($authors['corporate'] as $corporate => $roles): ?><?=($i++ == 0)?'':', '?><span property="creator"><a href="<?=$this->record($this->driver)->getLink('author', $corporate)?>"><?=$this->escapeHtml($corporate)?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
+      <? $titleDetails = $this->driver->getTitleDetails(); if (!empty($titleDetails)): ?>
+        <tr>
+          <th><?=$this->transEsc('Title')?>: </th>
+          <td property="title">
+            <? $i = 0; foreach ($titleDetails as $title): ?>
+              <?=($i > 0 ? '<br />':'')?><?=$this->escapeHtml($title)?><? $i++ ;?>
+            <? endforeach; ?>
           </td>
-      </tr>
+        </tr>
+      <? else: ?>
+        <tr>
+          <th><?=$this->transEsc('Title')?>: </th>
+          <td property="title"><?=$this->escapeHtml($this->driver->getShortTitle() . '  ' . $this->driver->getSubtitle() . '  ' . $this->driver->getTitleSection()) . ($this->driver->getTitleStatement() ? ' / ' . $this->driver->getTitleStatement() : '')?><br /><?=($this->driver->tryMethod('getTitleOrig') && $this->driver->getTitleOrig() != '' ? $this->escapeHtml($this->driver->getTitleOrig()) : '')?></td>
+        </tr>
       <? endif; ?>
 
-      <? if (isset($authors['secondary']) && !empty($authors['secondary'])): ?>
-      <tr>
-        <th><?=$this->transEsc('Other Authors')?>: </th>
-        <td>
-          <? $i = 0; foreach ($authors['secondary'] as $author => $roles): ?><?=($i++ == 0)?'':', '?><span property="contributor"><a href="<?=$this->record($this->driver)->getLink('author', $author)?>"><?=$this->escapeHtml($author)?></a><? if (count($roles) > 0): ?> (<? $j = 0; foreach ($roles as $role): ?><?=($j++ == 0)?'':', '?><?=$this->transEsc("CreatorRoles::" . $role)?><? endforeach; ?>)<? endif; ?></span><? endforeach; ?>
-        </td>
-      </tr>
+      <? /* finc only SolrMarc core specific changes - Start */ ?>
+      <? $workPartTitleDetails = $this->driver->tryMethod('getWorkPartTitleDetails'); if (!empty($workPartTitleDetails)): ?>
+        <tr>
+          <th><?=$this->transEsc('Work Part Title')?>: </th>
+          <td property="work part title">
+            <? $i = 0; foreach ($workPartTitleDetails as $title): ?>
+              <?=($i > 0 ? '<br />':'')?><?=$this->escapeHtml($title)?><? $i++ ;?>
+            <? endforeach; ?>
+          </td>
+        </tr>
       <? endif; ?>
 
+      <? $workTitleDetails = $this->driver->tryMethod('getWorkTitleDetails'); if (!empty($workTitleDetails)): ?>
+        <tr>
+          <th><?=$this->transEsc('Work Title')?>: </th>
+          <td property="work title">
+            <? $i = 0; foreach ($workTitleDetails as $title): ?>
+              <?=($i > 0 ? '<br />':'')?><?=$this->escapeHtml($title)?><? $i++ ;?>
+            <? endforeach; ?>
+          </td>
+        </tr>
+      <? endif; ?>
+      <? /* finc only SolrMarc core specific changes - End */ ?>
+
+      <? $titleUniform = $this->driver->getTitleUniform(); ?>
+      <? if (!empty($titleUniform)): ?>
+        <tr>
+          <th><?=$this->driver->isRDA()?$this->transEsc('rda_original_title'):$this->transEsc('non_rda_original_title')?>: </th>
+          <td><a href="<?=$this->record($this->driver)->getLink('title', $titleUniform)?>"><?=$this->escapeHtml($titleUniform)?></a></td>
+        </tr>
+      <? endif; ?>
+
+      <? $edition = $this->driver->getEdition(); if (!empty($edition)): ?>
+        <tr>
+          <th><?=$this->transEsc('Edition')?>: </th>
+          <td property="bookEdition"><?=$this->escapeHtml($edition)?><? $editionOrig = $this->driver->getEditionOrig(); if (!empty($editionOrig)): ?><br /><?=$this->escapeHtml($editionOrig)?><? endif; ?></td>
+        </tr>
+      <? endif; ?>
+
+      <? $dissertationNote = $this->driver->getDissertationNote(); if (!empty($dissertationNote)): ?>
+        <tr>
+          <th><?=$this->transEsc('Dissertation Note')?>: </th>
+          <td><?=$dissertationNote?></td>
+        </tr>
+      <? endif; ?>
+      <? /* finc specific rows - END */  ?>
+
       <? $formats = $this->driver->getFormats(); if (!empty($formats)): ?>
         <tr>
           <th><?=$this->transEsc('Format')?>: </th>
@@ -171,68 +230,19 @@ if($loggedin = $this->auth()->isLoggedIn()) {
         </tr>
       <? endif; ?>
 
-      <? $edition = $this->driver->getEdition(); if (!empty($edition)): ?>
-      <tr>
-        <th><?=$this->transEsc('Edition')?>: </th>
-        <td property="bookEdition"><?=$this->escapeHtml($edition)?></td>
-      </tr>
-      <? endif; ?>
-
-      <? /* These are the only SolrMarc core specific changes - rest identical with solrDefault core */  ?>
-      <? $workPartTitleDetails = $this->driver->tryMethod('getWorkPartTitleDetails'); if (!empty($workPartTitleDetails)): ?>
-        <tr>
-          <th><?=$this->transEsc('Work Part Title')?>: </th>
-          <td property="work part title">
-            <? $i = 0; foreach ($workPartTitleDetails as $title): ?>
-              <?=($i > 0 ? '<br />':'')?><?=$this->escapeHtml($title)?><? $i++ ;?>
-            <? endforeach; ?>
-          </td>
-        </tr>
-      <? endif; ?>
-
-      <? $workTitleDetails = $this->driver->tryMethod('getWorkTitleDetails'); if (!empty($workTitleDetails)): ?>
+      <? /* finc specific row - replaces series - Start */ ?>
+      <? $hierarchyParentTitle = $this->driver->getHierarchyParentTitle(); if (!empty($hierarchyParentTitle) && empty($series)): ?>
         <tr>
-          <th><?=$this->transEsc('Work Title')?>: </th>
-          <td property="work title">
-            <? $i = 0; foreach ($workTitleDetails as $title): ?>
-              <?=($i > 0 ? '<br />':'')?><?=$this->escapeHtml($title)?><? $i++ ;?>
+          <th><?=$this->transEsc('Set Multipart')?>: </th>
+          <td>
+            <? $hierarchyParentId = $this->driver->getHierarchyParentID(); ?>
+            <? foreach ($hierarchyParentTitle as $key=>$hTitle): ?>
+              <? if(isset($hierarchyParentId[$key])): ?><a href="<?=$this->recordLink()->getUrl($hierarchyParentId[$key])?>"><? endif; ?><?=$this->escapeHtml($hTitle)?><? if(isset($hierarchyParentId[$key])): ?></a><? endif; ?><br/>
             <? endforeach; ?>
           </td>
         </tr>
       <? endif; ?>
-
-      <? $dissertationNote = $this->driver->getDissertationNote(); if (!empty($dissertationNote)): ?>
-        <tr>
-          <th><?=$this->transEsc('Dissertation Note')?>: </th>
-          <td><?=$dissertationNote?></td>
-        </tr>
-      <? endif; ?>
-      <? /* These are the only SolrMarc core specific changes - END */  ?>
-
-      <?/* Display series section if at least one series exists. */?>
-      <? $series = $this->driver->getSeries(); if (!empty($series)): ?>
-      <tr>
-        <th><?=$this->transEsc('Series')?>: </th>
-        <td>
-          <? foreach ($series as $field): ?>
-            <?/* Depending on the record driver, $field may either be an array with
-               "name" and "number" keys or a flat string containing only the series
-               name.  We should account for both cases to maximize compatibility. */?>
-            <? if (is_array($field)): ?>
-              <? if (!empty($field['name'])): ?>
-                <a href="<?=$this->record($this->driver)->getLink('series', $field['name'])?>"><?=$this->escapeHtml($field['name'])?></a>
-                <? if (!empty($field['number'])): ?>
-                  <?=$this->escapeHtml($field['number'])?>
-                <? endif; ?>
-                <br/>
-              <? endif; ?>
-            <? else: ?>
-              <a href="<?=$this->record($this->driver)->getLink('series', $field)?>"><?=$this->escapeHtml($field)?></a><br/>
-            <? endif; ?>
-          <? endforeach; ?>
-        </td>
-      </tr>
-      <? endif; ?>
+      <? /* finc specific row - replaces series - End */ ?>
 
       <? $subjects = $this->driver->getAllSubjectHeadings(); if (!empty($subjects)): ?>
       <tr>
@@ -302,21 +312,6 @@ if($loggedin = $this->auth()->isLoggedIn()) {
         </tr>
       <? endif; ?>
 
-      <? $additionals = $this->driver->getAdditionals(); if (!empty($additionals) && is_array($additionals)): ?>
-        <? foreach($additionals as $additional) :?>
-          <? if (isset($additional['identifier'])): ?>
-          <tr>
-            <th><?=$this->escapeHtml($additional['identifier'])?>: </th>
-            <td>
-              <? if(isset($additional['id'])): ?><a href="<?=$this->recordLink()->getUrl($additional['id'])?>"><? endif; ?>
-              <?=$this->escapeHtml($additional['text'])?>
-              <? if(isset($additional['id'])): ?></a><? endif; ?>
-            </td>
-          </tr>
-          <? endif; ?>
-        <? endforeach; ?>
-      <? endif; ?>
-
       <? if ($this->usertags()->getMode() !== 'disabled'): ?>
         <? $tagList = $this->driver->getTags(null, null, 'count', $user_id); ?>
         <tr>
@@ -330,6 +325,7 @@ if($loggedin = $this->auth()->isLoggedIn()) {
         </tr>
       <? endif; ?>
 
+      <? /* finc specific rows - Start */ ?>
       <? $subjects = $this->driver->getLocalSubject(); if (!empty($subjects)): ?>
       <tr>
         <th><?=$this->transEsc('Subjects')?>: </th>
@@ -341,7 +337,46 @@ if($loggedin = $this->auth()->isLoggedIn()) {
         </td>
       </tr>
       <? endif; ?>
-      
+
+      <? $megaCollection = (array) $this->driver->tryMethod('getMegaCollection'); if (!empty($megaCollection)): ?>
+        <tr>
+          <th><?=$this->transEsc('Source')?>: </th>
+          <td>
+            <? foreach ($megaCollection as $field): ?>
+              <?=$this->escapeHtml($field)?><br/>
+            <? endforeach; ?>
+          </td>
+        </tr>
+      <? endif; ?>
+
+      <? $otherRelationshipEntry = (array) $this->driver->tryMethod('getOtherRelationshipEntry'); if (!empty($otherRelationshipEntry)): ?>
+        <? foreach ($otherRelationshipEntry as $key => $values): ?>
+          <tr>
+            <th><?=$this->transEsc($key)?>: </th>
+            <td>
+              <? foreach ($values as $value): ?>
+                <? if (!empty($value['link']) && $recordLink = $this->RecordLink()->getRecordLink($value['link'], 'record_id')): ?>
+                  <a href="<?=$recordLink?>"><?=$this->escapeHtml($value['text'])?></a><br/>
+                <? else: ?>
+                  <?=$this->escapeHtml($value['text'])?><br/>
+                <? endif; ?>
+              <? endforeach; ?>
+            </td>
+          </tr>
+        <? endforeach; ?>
+      <? endif; ?>
+
+      <? $additionalNotes = (array) $this->driver->tryMethod('getAdditionalNotes'); if (!empty($additionalNotes)): ?>
+        <tr>
+          <th><?=$this->transEsc('Notes')?>: </th>
+          <td>
+            <? foreach ($additionalNotes as $note): ?>
+              <?=$this->escapeHtml($note)?><br/>
+            <? endforeach; ?>
+          </td>
+        </tr>
+      <? endif; ?>
+      <? /* finc specific rows - End */ ?>
     </table>
     <?/* End Main Details */?>
   </div>
diff --git a/themes/finc/templates/RecordTab/description.phtml b/themes/finc/templates/RecordTab/description.phtml
index c98e243f6d4..ca307a0c99e 100644
--- a/themes/finc/templates/RecordTab/description.phtml
+++ b/themes/finc/templates/RecordTab/description.phtml
@@ -23,7 +23,7 @@
   <? $dateSpan = $this->driver->getDateSpan(); if (!empty($dateSpan)): ?>
     <? $contentDisplayed = true; ?>
     <tr>
-      <th><?=$this->transEsc('Published')?>: </th>
+      <th><?=$this->transEsc('Dates of publication')?>: </th>
       <td>
         <? foreach ($dateSpan as $field): ?>
           <?=$this->escapeHtml($field)?><br/>
@@ -261,6 +261,21 @@
     </tr>
   <? endif; ?>
 
+  <? $additionals = $this->driver->getAdditionals(); if (!empty($additionals) && is_array($additionals)): ?>
+    <? foreach($additionals as $additional) :?>
+      <? if (isset($additional['identifier'])): ?>
+      <tr>
+        <th><?=$this->escapeHtml($additional['identifier'])?>: </th>
+        <td>
+          <? if(isset($additional['id'])): ?><a href="<?=$this->recordLink()->getUrl($additional['id'])?>"><? endif; ?>
+          <?=$this->escapeHtml($additional['text'])?>
+          <? if(isset($additional['id'])): ?></a><? endif; ?>
+        </td>
+      </tr>
+      <? endif; ?>
+    <? endforeach; ?>
+  <? endif; ?>
+
   <? if (!isset($contentDisplayed) || !$contentDisplayed): // Avoid errors if there were no rows above ?>
     <tr><td><?=$this->transEsc('no_description')?></td></tr>
   <? endif; ?>
-- 
GitLab