| 5 search.module | search_index_split($text) |
| 6 search.module | search_index_split($text) |
| 7 search.module | search_index_split($text) |
| 8 search.module | search_index_split($text) |
Simplifies and splits a string into tokens for indexing.
1 call to search_index_split()
File
- core/
modules/ search/ search.module, line 513 - Enables site-wide keyword searching.
Code
function search_index_split($text) {
$last = &drupal_static(__FUNCTION__);
$lastsplit = &drupal_static(__FUNCTION__ . ':lastsplit');
if ($last == $text) {
return $lastsplit;
}
// Process words
$text = search_simplify($text);
$words = explode(' ', $text);
// Save last keyword result
$last = $text;
$lastsplit = $words;
return $words;
}
Login or register to post comments