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

Disable facetListAction where it is not yet needed/supported.

parent f51f4953
No related merge requests found
...@@ -60,6 +60,18 @@ class Options extends \VuFind\Search\Solr\Options ...@@ -60,6 +60,18 @@ class Options extends \VuFind\Search\Solr\Options
$this->spellcheck = false; $this->spellcheck = false;
} }
/**
* Return the route name for the facet list action. Returns false to cover
* unimplemented support.
*
* @return string|bool
*/
public function getFacetListAction()
{
// Not applicable here; we don't want to inherit the parent class' route.
return false;
}
/** /**
* Return the route name for the search results action. * Return the route name for the search results action.
* *
......
...@@ -64,6 +64,18 @@ class Options extends \VuFind\Search\Solr\Options ...@@ -64,6 +64,18 @@ class Options extends \VuFind\Search\Solr\Options
$this->defaultSort = key($this->sortOptions); $this->defaultSort = key($this->sortOptions);
} }
/**
* Return the route name for the facet list action. Returns false to cover
* unimplemented support.
*
* @return string|bool
*/
public function getFacetListAction()
{
// TODO: implement support for this if needed.
return false;
}
/** /**
* Load all recommendation settings from the relevant ini file. Returns an * Load all recommendation settings from the relevant ini file. Returns an
* associative array where the key is the location of the recommendations (top * associative array where the key is the location of the recommendations (top
......
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