Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
6684bf45
Commit
6684bf45
authored
5 years ago
by
Maxence Lange
Browse files
Options
Downloads
Patches
Plain Diff
+isAvailable()
Signed-off-by:
Maxence Lange
<
maxence@artificial-owl.com
>
parent
d1e4d614
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/private/FullTextSearch/FullTextSearchManager.php
+15
-0
15 additions, 0 deletions
lib/private/FullTextSearch/FullTextSearchManager.php
lib/public/FullTextSearch/IFullTextSearchManager.php
+10
-0
10 additions, 0 deletions
lib/public/FullTextSearch/IFullTextSearchManager.php
with
25 additions
and
0 deletions
lib/private/FullTextSearch/FullTextSearchManager.php
+
15
−
0
View file @
6684bf45
...
@@ -85,6 +85,21 @@ class FullTextSearchManager implements IFullTextSearchManager {
...
@@ -85,6 +85,21 @@ class FullTextSearchManager implements IFullTextSearchManager {
$this
->
searchService
=
$searchService
;
$this
->
searchService
=
$searchService
;
}
}
/**
* @since 16.0.0
*
* @return bool
*/
public
function
isAvailable
():
bool
{
if
(
$this
->
indexService
===
null
||
$this
->
providerService
===
null
||
$this
->
searchService
===
null
)
{
return
false
;
}
return
true
;
}
/**
/**
* @return IProviderService
* @return IProviderService
...
...
This diff is collapsed.
Click to expand it.
lib/public/FullTextSearch/IFullTextSearchManager.php
+
10
−
0
View file @
6684bf45
...
@@ -78,6 +78,16 @@ interface IFullTextSearchManager {
...
@@ -78,6 +78,16 @@ interface IFullTextSearchManager {
*/
*/
public
function
registerSearchService
(
ISearchService
$searchService
);
public
function
registerSearchService
(
ISearchService
$searchService
);
/**
* returns true is Full Text Search is available (app is present and Service
* are registered)
*
* @since 16.0.0
*
* @return bool
*/
public
function
isAvailable
():
bool
;
/**
/**
* Add the Javascript API in the navigation page of an app.
* Add the Javascript API in the navigation page of an app.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment