You are here

function rustemmer_search_api_processor_info in Russian stemming 7

Implements hook_search_api_processor_info().

File

./rustemmer.module, line 72
Russian stemming algorith provided by Dr Martin Porter.

Code

function rustemmer_search_api_processor_info() {
  $processors['search_api_russian_stemmer'] = array(
    'name' => t('Russian stemmer'),
    'description' => t('This processor improves search of Russian words by using the stemming algorithm for Russian language.'),
    'class' => 'SearchApiRussianStemmer',
  );
  return $processors;
}