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 'templates/settings.admin.php')
-rw-r--r--templates/settings.admin.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/templates/settings.admin.php b/templates/settings.admin.php
new file mode 100644
index 0000000..9a6ecf0
--- /dev/null
+++ b/templates/settings.admin.php
@@ -0,0 +1,46 @@
+<?php
+
+use OCA\FullNextSearch\AppInfo\Application;
+use OCP\Util;
+
+Util::addScript(Application::APP_NAME, 'admin.elements');
+Util::addScript(Application::APP_NAME, 'admin.settings');
+Util::addScript(Application::APP_NAME, 'admin');
+
+Util::addStyle(Application::APP_NAME, 'admin');
+
+?>
+
+<div id="fns" class="section">
+ <h2><?php p($l->t('Full Next Search')) ?></h2>
+
+ <div class="div-table">
+
+ <div class="div-table-row">
+ <div class="div-table-col div-table-col-left">
+ <span class="leftcol">Search Platform :</span>
+ <br/>
+ <em>Select the app that will be used to index content and answer search queries.</em>
+ </div>
+ <div class="div-table-col">
+ <select id="fns_platforms" class="hidden">
+ <option></option>
+ </select>
+ </div>
+ </div>
+
+ <div class="div-table-row">
+ <div class="div-table-col div-table-col-left">
+ <span class="leftcol">Indexing Chunk Size :</span>
+ <br/>
+ <em>Lower the value if the server is short on memory.</em>
+ </div>
+ <div class="div-table-col">
+ <input type="text" class="hidden small" id="fns_chunk_size"/>
+ </div>
+ </div>
+
+ </div>
+
+
+</div> \ No newline at end of file