diff options
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/files/view.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 95f3e9a2c7f..3d3406af94e 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1110,6 +1110,16 @@ class View { } /** + * search for files with the name matching $query + * + * @param string $query + * @return FileInfo[] + */ + public function searchRaw($query) { + return $this->searchCommon($query, 'search'); + } + + /** * search for files by mimetype * * @param string $mimetype |