Skip to content
Snippets Groups Projects
Commit 7556cb67 authored by Robert Lange's avatar Robert Lange Committed by Dorian Merz
Browse files

refs #20834 [finc] add getItemCallnumber FincLibero

* overrides VuFind DAIA method
* set emtpy string for empty label instead of english word 'UNKNOWN'
* moved from de_15 and de_l152
parent 6fc7e3ae
No related merge requests found
...@@ -454,6 +454,20 @@ class FincLibero extends FincILS implements TranslatorAwareInterface ...@@ -454,6 +454,20 @@ class FincLibero extends FincILS implements TranslatorAwareInterface
return $details; return $details;
} }
/**
* Returns the value for "callnumber" in VuFind getStatus/getHolding array
*
* @param array $item Array with DAIA item data
*
* @return string
*/
protected function getItemCallnumber($item)
{
return isset($item['label']) && !empty($item['label'])
? $item['label']
: '';
}
/** /**
* FincLibero specific overrides of DAIA methods * FincLibero specific overrides of DAIA methods
*/ */
......
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