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

refs #10070:

* added access to field title_alt
parent 1ce25c1a
No related merge requests found
...@@ -1123,4 +1123,15 @@ trait SolrDefaultFincTrait ...@@ -1123,4 +1123,15 @@ trait SolrDefaultFincTrait
return isset($this->fields['music_heading']) ? return isset($this->fields['music_heading']) ?
$this->fields['music_heading'] : null; $this->fields['music_heading'] : null;
} }
/**
* Return content of Solr field title_alt if set
*
* @return mixed
*/
public function getTitleAlt()
{
return isset($this->fields['title_alt']) ?
$this->fields['title_alt'] : 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