Skip to content
Snippets Groups Projects
Commit 6684bf45 authored by Maxence Lange's avatar Maxence Lange
Browse files

+isAvailable()

parent d1e4d614
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
...@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment