Skip to content
Snippets Groups Projects
Commit 1ce25c1a authored by ju454jufu's avatar ju454jufu Committed by André Lahmann
Browse files

refs #10068:

* added method to access field music_heading
parent 6a40d4be
No related merge requests found
...@@ -1103,7 +1103,7 @@ trait SolrDefaultFincTrait ...@@ -1103,7 +1103,7 @@ trait SolrDefaultFincTrait
} }
/** /**
* Return content of Solr field performer note if set * Return content of Solr field performer_note if set
* *
* @return mixed * @return mixed
*/ */
...@@ -1112,4 +1112,15 @@ trait SolrDefaultFincTrait ...@@ -1112,4 +1112,15 @@ trait SolrDefaultFincTrait
return isset($this->fields['performer_note']) ? return isset($this->fields['performer_note']) ?
$this->fields['performer_note'] : null; $this->fields['performer_note'] : null;
} }
/**
* Return content of Solr field music_heading if set
*
* @return mixed
*/
public function getMusicHeading()
{
return isset($this->fields['music_heading']) ?
$this->fields['music_heading'] : null;
}
} }
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