protected function SearchApiAbstractProcessor::process in Search API 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.
3 calls to SearchApiAbstractProcessor::process()
- SearchApiAbstractProcessor::processFieldValue in includes/
processor.inc - Called for processing a single text element in a field. The default implementation just calls process().
- SearchApiAbstractProcessor::processFilterValue in includes/
processor.inc - Called for processing a single filter value. The default implementation just calls process().
- SearchApiAbstractProcessor::processKey in includes/
processor.inc - Called for processing a single search keyword. The default implementation just calls process().
5 methods override SearchApiAbstractProcessor::process()
- SearchApiIgnoreCase::process in includes/
processor_ignore_case.inc - Function that is ultimately called for all text by the standard implementation, and does nothing by default.
- SearchApiPorterStemmer::process in includes/
processor_stemmer.inc - Function that is ultimately called for all text by the standard implementation, and does nothing by default.
- SearchApiStopWords::process in includes/
processor_stopwords.inc - Function that is ultimately called for all text by the standard implementation, and does nothing by default.
- SearchApiTokenizer::process in includes/
processor_tokenizer.inc - Function that is ultimately called for all text by the standard implementation, and does nothing by default.
- SearchApiTransliteration::process in includes/
processor_transliteration.inc - Function that is ultimately called for all text by the standard implementation, and does nothing by default.
File
- includes/
processor.inc, line 468 - Contains SearchApiProcessorInterface and SearchApiAbstractProcessor.
Class
- SearchApiAbstractProcessor
- Abstract processor implementation that provides an easy framework for only processing specific fields.
Code
protected function process(&$value) {
}