Skip to content
Snippets Groups Projects
Commit 0a8090ee authored by André Lahmann's avatar André Lahmann
Browse files

refs #7841:

* added method to return value for order information in library specific marc field
parent 5b33c6d3
No related merge requests found
......@@ -160,6 +160,27 @@ trait SolrMarcFincTrait
return $retVal;
}
/**
* Method to return the order information stored in fullrecord
* LocalMarcFieldOfLibrary $m
*
* @return null|string
*/
public function getLocalOrderInformation()
{
// loop through all existing LocalMarcFieldOfLibrary
if ($fields = $this->getMarcRecord()->getFields($this->getLocalMarcFieldOfLibrary())) {
foreach($fields as $field) {
// return the first occurance of $m
if ($field->getSubfield('m')) {
return $field->getSubfield('m')->getData();
}
}
}
// no LocalMarcFieldOfLibrary or $m found
return null;
}
/**
* Return the local callnumber.
*
......
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