public function NodeSearch::markForReindex in Drupal 10
Same name and namespace in other branches
- 8 core/modules/node/src/Plugin/Search/NodeSearch.php \Drupal\node\Plugin\Search\NodeSearch::markForReindex()
- 9 core/modules/node/src/Plugin/Search/NodeSearch.php \Drupal\node\Plugin\Search\NodeSearch::markForReindex()
File
- core/
modules/ node/ src/ Plugin/ Search/ NodeSearch.php, line 551
Class
- NodeSearch
- Handles searching for node entities using the Search module index.
Namespace
Drupal\node\Plugin\SearchCode
public function markForReindex() {
// All NodeSearch pages share a common search index "type" equal to
// the plugin ID.
$this->searchIndex
->markForReindex($this
->getPluginId());
}