You are here

protected function SearchApiRussianStemmer::process in Russian stemming 7

Function that is ultimately called for all text by the standard implementation, and does nothing by default.

Parameters

$value: The value to preprocess as a string. Can be manipulated directly, nothing has to be returned. Since this can be called for all value types, $value has to remain a string.

Overrides SearchApiAbstractProcessor::process

File

./SearchApiRussianStemmer.php, line 14
Definition of SearchApiRussianStemmer.

Class

SearchApiRussianStemmer
Search API russian stemming processor.

Code

protected function process(&$value) {
  $value = rustemmer_search_preprocess($value);
}