function search_invoke_preprocess in Drupal 8
Same name and namespace in other branches
- 6 modules/search/search.module \search_invoke_preprocess()
 - 7 modules/search/search.module \search_invoke_preprocess()
 - 9 core/modules/search/search.module \search_invoke_preprocess()
 
Invokes hook_search_preprocess() to simplify text.
Parameters
string $text: Text to preprocess, passed by reference and altered in place.
string|null $langcode: Language code for the language of $text, if known.
1 call to search_invoke_preprocess()
- search_simplify in core/
modules/ search/ search.module  - Simplifies and preprocesses text for searching.
 
File
- core/
modules/ search/ search.module, line 377  - Enables site-wide keyword searching.
 
Code
function search_invoke_preprocess(&$text, $langcode = NULL) {
  foreach (\Drupal::moduleHandler()
    ->getImplementations('search_preprocess') as $module) {
    $text = \Drupal::moduleHandler()
      ->invoke($module, 'search_preprocess', [
      $text,
      $langcode,
    ]);
  }
}