Skip to content
Snippets Groups Projects
Commit 86ca2abf authored by Dorian Merz's avatar Dorian Merz
Browse files

refs #15135 [master] kxp id retrieval

* adds getKxpId() to RecordDriver
parent 80e4700d
No related merge requests found
...@@ -1278,4 +1278,15 @@ trait SolrDefaultFincTrait ...@@ -1278,4 +1278,15 @@ trait SolrDefaultFincTrait
return isset($this->fields['facet_avail']) return isset($this->fields['facet_avail'])
? $this->fields['facet_avail'] : []; ? $this->fields['facet_avail'] : [];
} }
/**
* Get K10Plus PPN for this record
* This will be stored in 'kxp_id_str'
*
* @return array
*/
public function getKxpId() {
return isset($this->fields['kxp_id_str'])
? $this->fields['kxp_id_str'] : [];
}
} }
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