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

refs #12053:

* added function getFacetAvail
parent dbd5c83a
Branches
Tags
No related merge requests found
......@@ -1214,4 +1214,15 @@ trait SolrDefaultFincTrait
return isset($this->fields['genre_facet'])
? $this->fields['genre_facet'] : [];
}
/**
* Get values of facet_avail field
*
* @return array
*/
public function getFacetAvail()
{
return isset($this->fields['facet_avail'])
? $this->fields['facet_avail'] : [];
}
}
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