public function NodeSearch::markForReindex in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/node/src/Plugin/Search/NodeSearch.php \Drupal\node\Plugin\Search\NodeSearch::markForReindex()
Marks the search index for reindexing for this plugin.
When a request is made to mark all items from the search index related to this plugin for reindexing, this method will be called. If this plugin uses the default search index, this method can call search_mark_for_reindex($type) to mark the items in the search database for reindexing.
Overrides SearchIndexingInterface::markForReindex
See also
File
- core/
modules/ node/ src/ Plugin/ Search/ NodeSearch.php, line 493 - Contains \Drupal\node\Plugin\Search\NodeSearch.
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.
search_mark_for_reindex($this
->getPluginId());
}