Skip to content
Snippets Groups Projects
Commit 5dc2dc4f authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Add setting for default search backend. (#1476)

parent ce0564b6
No related merge requests found
......@@ -97,6 +97,9 @@ defaultModule = Search
defaultLoggedInModule = MyResearch
; When defaultLoggedInModule is used, this action will be triggered (default = Home)
;defaultLoggedInAction = Home
; The search backend that VuFind will use in search boxes when nothing else is
; specified (e.g. on user account pages, search history, etc.). Default = Solr
;defaultSearchBackend = Solr
; The route VuFind will send users to following a log out operation. Set to false
; or omit to attempt to retain the user's current context after log out.
;logOutRoute = home
......
<?php
// Set default value if necessary:
if (!isset($this->searchClassId)) {
$this->searchClassId = 'Solr';
$config = $this->config()->get('config');
$this->searchClassId = $config->Site->defaultSearchBackend ?? 'Solr';
}
// Load search actions and settings (if any):
......
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