From 0fd6ed5381972615f6a0a5f0ef617ac469503ea5 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 14 May 2025 15:07:35 +0200 Subject: [PATCH] initial search class --- inc/inc.Utils.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/inc/inc.Utils.php b/inc/inc.Utils.php index f2392b35c..049035396 100644 --- a/inc/inc.Utils.php +++ b/inc/inc.Utils.php @@ -1395,3 +1395,20 @@ class SeedDMS_FolderTree { /* {{{ */ } /* }}} */ } /* }}} */ + +class SeedDMS_Search { /* {{{ */ + protected $dms; + + protected $settings; + + public function __construct($dms, $settings) { + $this->dms = $dms; + $this->settings = $settings; + } + + public function createSearchFromQuery($urlquery) { /* {{{ */ + } /* }}} */ + + public function search() { /* {{{ */ + } /* }}} */ +} /* }}} */