Skip to content
Snippets Groups Projects
Commit 2fa7198d authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Redo VuDL details.

parent b1faea31
Branches
Tags
No related merge requests found
...@@ -135,54 +135,32 @@ class AbstractBase implements \VuFindHttp\HttpServiceAwareInterface ...@@ -135,54 +135,32 @@ class AbstractBase implements \VuFindHttp\HttpServiceAwareInterface
if (empty($detailsList)) { if (empty($detailsList)) {
throw new \Exception('Missing [Details] in VuDL.ini'); throw new \Exception('Missing [Details] in VuDL.ini');
} }
$details = array();
foreach ($detailsList as $key=>$title) { foreach ($detailsList as $key=>$title) {
$keys = explode(',', $key); $keys = explode(',', $key);
foreach ($keys as $k) { if (count($keys) == 1) {
$fields[$k] = $title; if (isset($record[$keys[0]])) {
} $value = $record[$keys[0]];
// Link up to top combined field
if (count($keys) > 1) {
$combinedFields[] = $keys;
}
}
// Pool details
$details = array();
foreach ($fields as $key=>$title) {
if (isset($record[$key])) {
$details[$key] = array('title' => $title, 'value' => $record[$key]);
}
}
// Rearrange combined fields
foreach ($combinedFields as $fields) {
$main = $fields[0];
if (!isset($details[$main]['value'])
|| !is_array($details[$main]['value'])
) {
if (isset($details[$main]['value'])) {
$details[$main]['value'] = array($details[$main]['value']);
} else {
$details[$main]['value'] = array();
} }
} } else {
for ($i=1;$i<count($fields);$i++) { $value = array();
if (isset($details[$fields[$i]])) { foreach ($keys as $k) {
if (!isset($details[$main]['title'])) { if (isset($record[$k])) {
$details[$main]['title'] = $details[$fields[$i]]['title']; if (is_array($record[$k])) {
} $value = array_merge($value, $record[$k]);
if (is_array($details[$main]['value'])) { } else {
foreach ($details[$fields[$i]]['value'] as $value) { $value[] = $record[$k];
$details[$main]['value'][] = $value;
} }
} else {
$details[$main]['value'][] = $details[$fields[$i]]['value'];
} }
unset($details[$fields[$i]]);
} }
} }
if (empty($details[$main]['value'])) { $details[$keys[0]] = array(
unset($details[$main]); 'title' => $title,
} 'value' => $value
);
} }
var_dump($detailsList);
var_dump($details);
return $details; return $details;
} }
} }
\ No newline at end of file
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
<? // If we need exploding and backlinking ?> <? // If we need exploding and backlinking ?>
<? elseif($attr == 'topic' || $attr == 'series'): ?> <? elseif($attr == 'topic' || $attr == 'series'): ?>
<? if(!is_array($val['value'])) $val['value'] = array($val['value']); ?>
<? if(count($val['value']) > 1): ?><ul class="unstyled"><? endif ?> <? if(count($val['value']) > 1): ?><ul class="unstyled"><? endif ?>
<? foreach($val['value'] as $v): ?> <? foreach($val['value'] as $v): ?>
<? if(count($val['value']) > 1): ?><li><? endif ?> <? if(count($val['value']) > 1): ?><li><? endif ?>
......
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