You are here

public function SolrAutocompleteInterface::getSpellcheckSuggestions in Search API Solr 8.2

Same name and namespace in other branches
  1. 8.3 src/SolrAutocompleteInterface.php \Drupal\search_api_solr\SolrAutocompleteInterface::getSpellcheckSuggestions()
  2. 4.x src/SolrAutocompleteInterface.php \Drupal\search_api_solr\SolrAutocompleteInterface::getSpellcheckSuggestions()

Autocompletion suggestions for some user input using Spellcheck component.

Parameters

\Drupal\search_api\Query\QueryInterface $query: A query representing the base search, with all completely entered words in the user input so far as the search keys.

\Drupal\search_api_autocomplete\SearchInterface $search: An object containing details about the search the user is on, and settings for the autocompletion. See the class documentation for details. Especially $search->getOptions() should be checked for settings, like whether to try and estimate result counts for returned suggestions.

string $incomplete_key: The start of another fulltext keyword for the search, which should be completed. Might be empty, in which case all user input up to now was considered completed. Then, additional keywords for the search could be suggested.

string $user_input: The complete user input for the fulltext search keywords so far.

Return value

\Drupal\search_api_autocomplete\Suggestion\SuggestionInterface[] An array of autocomplete suggestions.

1 method overrides SolrAutocompleteInterface::getSpellcheckSuggestions()
SearchApiSolrBackend::getSpellcheckSuggestions in src/Plugin/search_api/backend/SearchApiSolrBackend.php
Autocompletion suggestions for some user input using Spellcheck component.

File

src/SolrAutocompleteInterface.php, line 73

Class

SolrAutocompleteInterface
Defines an autocomplete interface for Solr search backend plugins.

Namespace

Drupal\search_api_solr

Code

public function getSpellcheckSuggestions(QueryInterface $query, $search, $incomplete_key, $user_input);