Skip to content
Snippets Groups Projects
Commit ee1200b1 authored by Gregor Gawol's avatar Gregor Gawol Committed by Robert Lange
Browse files

refs #17408 [master-v5] reactivate resolver sid 48

* added missing method in RecordDriver SolrAI
parent 8906e555
No related merge requests found
...@@ -266,6 +266,16 @@ class SolrAI extends SolrDefault implements ...@@ -266,6 +266,16 @@ class SolrAI extends SolrDefault implements
return isset($this->fields['issn']) ? $this->fields['issn'] : []; return isset($this->fields['issn']) ? $this->fields['issn'] : [];
} }
/**
* Get an array of all ISSNs associated with the record (may be empty).
*
* @return array of issns
*/
public function getCleanISSN()
{
return $this->getAIRecord('rft.issn');
}
/** /**
* Get the eISSN from a record. * Get the eISSN from a record.
* *
......
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