Skip to content
Snippets Groups Projects
Commit 8c81cd74 authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Add configuration to filter EDS item display. (#1654)

parent 350ec184
Branches
Tags
No related merge requests found
...@@ -267,3 +267,24 @@ auto_submit = true ...@@ -267,3 +267,24 @@ auto_submit = true
;AllFields = Eds:rawqueries ;AllFields = Eds:rawqueries
;TI = Eds:holdings ;TI = Eds:holdings
AU = None AU = None
; This section can be used to filter out unwanted items from display in any context.
[ItemGlobalFilter]
; This repeatable setting can be used to filter out values based on their labels:
;excludeLabel[] = 'Availability'
; This repeatable setting can be used to filter out values using group codes:
;excludeGroup[] = 'URL'
; Similar to [ItemGlobalFilter] but applied only for record view.
[ItemCoreFilter]
; This repeatable setting can be used to filter out values based on their labels:
;excludeLabel[] = 'Availability'
; This repeatable setting can be used to filter out values using group codes:
;excludeGroup[] = 'URL'
; Similar to [ItemGlobalFilter] but applied only for search result view.
[ItemResultListFilter]
; This repeatable setting can be used to filter out values based on their labels:
;excludeLabel[] = 'Availability'
; This repeatable setting can be used to filter out values using group codes:
;excludeGroup[] = 'URL'
...@@ -193,22 +193,63 @@ class EDS extends DefaultRecord ...@@ -193,22 +193,63 @@ class EDS extends DefaultRecord
&& ('1' == $this->fields['FullText']['Text']['Availability']); && ('1' == $this->fields['FullText']['Text']['Availability']);
} }
/**
* Support method for getItems, used to apply filters.
*
* @param array $item Item to check
* @param string $context The context in which items are being retrieved
* (used for context-sensitive filtering)
*
* @return bool
*/
protected function itemIsExcluded($item, $context)
{
// Create a list of config sections to check, based on context:
$sections = ['ItemGlobalFilter'];
switch ($context) {
case 'result-list':
$sections[] = 'ItemResultListFilter';
break;
case 'core':
$sections[] = 'ItemCoreFilter';
break;
}
// Check to see if anything is filtered:
foreach ($sections as $section) {
$currentConfig = isset($this->recordConfig->$section)
? $this->recordConfig->$section->toArray() : [];
$badLabels = (array)($currentConfig['excludeLabel'] ?? []);
$badGroups = (array)($currentConfig['excludeGroup'] ?? []);
if (in_array($item['Label'], $badLabels)
|| in_array($item['Group'], $badGroups)
) {
return true;
}
}
// If we got this far, no filter was applied:
return false;
}
/** /**
* Get the items of the record. * Get the items of the record.
* *
* @param string $context The context in which items are being retrieved
* (used for context-sensitive filtering)
*
* @return array * @return array
*/ */
public function getItems() public function getItems($context = null)
{ {
$items = []; $items = [];
if (isset($this->fields['Items']) && !empty($this->fields['Items'])) { foreach ($this->fields['Items'] ?? [] as $item) {
foreach ($this->fields['Items'] as $item) { $nextItem = [
$items[] = [ 'Label' => $item['Label'] ?? '',
'Label' => $item['Label'] ?? '', 'Group' => $item['Group'] ?? '',
'Group' => $item['Group'] ?? '', 'Data' => isset($item['Data'])
'Data' => isset($item['Data']) ? $this->toHTML($item['Data'], $item['Group']) : ''
? $this->toHTML($item['Data'], $item['Group']) : '' ];
]; if (!$this->itemIsExcluded($nextItem, $context)) {
$items[] = $nextItem;
} }
} }
return $items; return $items;
......
<?php $this->headLink()->appendStylesheet('EDS.css'); ?> <?php $this->headLink()->appendStylesheet('EDS.css'); ?>
<?php <?php
$items = $this->driver->getItems(); $items = $this->driver->getItems('core');
$dbLabel = $this->driver->getDbLabel(); $dbLabel = $this->driver->getDbLabel();
$thumb = $this->driver->getThumbnail('medium'); $thumb = $this->driver->getThumbnail('medium');
$pubType = $this->driver->getPubType(); $pubType = $this->driver->getPubType();
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
<?php endif; ?> <?php endif; ?>
<div class="media-body"> <div class="media-body">
<div class="result-body"> <div class="result-body">
<?php $items = $this->driver->getItems(); <?php $items = $this->driver->getItems('result-list');
if (isset($items) && !empty($items)): if (isset($items) && !empty($items)):
foreach ($items as $item): foreach ($items as $item):
if (!empty($item)): ?> if (!empty($item)): ?>
......
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