Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Service/ConfigService.php')
-rw-r--r--lib/Service/ConfigService.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/Service/ConfigService.php b/lib/Service/ConfigService.php
index b909353..9fee3b3 100644
--- a/lib/Service/ConfigService.php
+++ b/lib/Service/ConfigService.php
@@ -36,12 +36,23 @@ class ConfigService
const SEARCH_DISPLAY_FILES = 2;
+ const RESOURCE_LEVEL_LOWER = '1';
+
+ const RESOURCE_LEVEL_LOW = '2';
+
+ const RESOURCE_LEVEL_MID = '3';
+
+ const RESOURCE_LEVEL_HIGH = '4';
+
+ const RESOURCE_LEVEL_HIGHER = '5';
+
private $defaults = [
'configured' => '0',
'solr_url' => 'http://127.0.0.1:8983/solr/',
'solr_core' => 'nextant',
'solr_timeout' => '30',
+ 'resource_level' => '4',
'index_live' => '1',
'index_live_queuekey' => '19375',
'index_delay' => '2',
@@ -182,6 +193,11 @@ class ConfigService
return false;
}
+ public function resourceLevel()
+ {
+ return $this->getAppValue('resource_level');
+ }
+
/**
* Get a value by key
*