You are here

public function SearchApiStopWords::preprocessSearchQuery in Search API 7

Calls processKeys() for the keys and processFilters() for the filters.

Overrides SearchApiAbstractProcessor::preprocessSearchQuery

File

includes/processor_stopwords.inc, line 72
Contains SearchApiStopWords.

Class

SearchApiStopWords
Processor for removing stopwords from index and search terms.

Code

public function preprocessSearchQuery(SearchApiQuery $query) {
  $this->ignored = array();
  parent::preprocessSearchQuery($query);
}