From 642a35eba08acf5881bb2daa0f06394242639554 Mon Sep 17 00:00:00 2001
From: Robert Lange <robert.lange@uni-leipzig.de>
Date: Wed, 19 Jan 2022 18:16:35 +0100
Subject: [PATCH] refs #17489 [finc] add getter for marc 382a - Medium of
 Performance

* also see https://www.loc.gov/marc/bibliographic/bd382.html
---
 .../finc/RecordDriver/SolrMarcFincTrait.php   | 21 +++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/module/finc/src/finc/RecordDriver/SolrMarcFincTrait.php b/module/finc/src/finc/RecordDriver/SolrMarcFincTrait.php
index fd921067791..40b481986aa 100644
--- a/module/finc/src/finc/RecordDriver/SolrMarcFincTrait.php
+++ b/module/finc/src/finc/RecordDriver/SolrMarcFincTrait.php
@@ -431,6 +431,27 @@ trait SolrMarcFincTrait
         return $this->getFieldArray('590', ['b']);
     }
 
+    /**
+     * Get an array of terms that indicate the instrumental, vocal
+     * and/or other medium of performance.
+     * https://www.loc.gov/marc/bibliographic/bd382.html
+     *
+     * @return array
+     */
+    public function getMediumOfPerformance()
+    {
+        if ($field382 = $this->getMarcRecord()->getField('382')) {
+            return $this->getSubfieldArray(
+                $field382,
+                ['a'],
+                true,
+                ', '
+            );
+        }
+
+        return [];
+    }
+
     /**
      * Get the ISSN from a record. Refs #969
      *
-- 
GitLab