Skip to content
Snippets Groups Projects
Commit bb9570ad authored by Demian Katz's avatar Demian Katz
Browse files

Implemented previously unsupported parameters.

parent f5974781
No related merge requests found
...@@ -350,8 +350,16 @@ class Results extends \VuFind\Search\Base\Results ...@@ -350,8 +350,16 @@ class Results extends \VuFind\Search\Base\Results
$limit = 50; $limit = 50;
} }
$params->resetFacetConfig(); $params->resetFacetConfig();
if (null !== $facetSort && 'count' !== $facetSort) {
throw new \Exception("$facetSort facet sort not supported by Summon.");
}
foreach ($facetfields as $facet) { foreach ($facetfields as $facet) {
$params->addFacet($facet . ',or,' . $page . ',' . $limit); $params->addFacet($facet . ',or,' . $page . ',' . $limit);
// Clear existing filters for the selected field if necessary:
if ($removeFilter) {
$params->removeAllFilters($facet);
}
} }
$params = $params->getBackendParameters(); $params = $params->getBackendParameters();
$collection = $this->getSearchService()->search( $collection = $this->getSearchService()->search(
......
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