diff --git a/module/VuFind/src/VuFind/ILS/Driver/Alma.php b/module/VuFind/src/VuFind/ILS/Driver/Alma.php index ed1448f4dced6a59b563807463a4c7696648303b..d6881b2e8dd4d3126541b65f58d4b609c16d14b1 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Alma.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Alma.php @@ -340,8 +340,7 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface 'source' => 'Solr', 'availability' => $this->getAvailabilityFromItem($item), 'status' => $status, - 'location' - => $this->getTranslatableString($item->item_data->location), + 'location' => $this->getItemLocation($item), 'reserve' => 'N', // TODO: support reserve status 'callnumber' => $this->getTranslatableString( $item->holding_data->call_number @@ -1855,6 +1854,18 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface return false === $subfield ? '' : $subfield->getData(); } + /** + * Get location for an item + * + * @param SimpleXMLElement $item Item + * + * @return \VuFind\I18n\TranslatableString|string + */ + protected function getItemLocation($item) + { + return $this->getTranslatableString($item->item_data->location); + } + // @codingStandardsIgnoreStart /**