public function NodeSearch::indexClear 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::indexClear()
Clears the search index for this plugin.
When a request is made to clear all items from the search index related to this plugin, this method will be called. If this plugin uses the default search index, this method can call search_index_clear($type) to remove indexed items from the search database.
Overrides SearchIndexingInterface::indexClear
See also
File
- core/
modules/ node/ src/ Plugin/ Search/ NodeSearch.php, line 484 - 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 indexClear() {
// All NodeSearch pages share a common search index "type" equal to
// the plugin ID.
search_index_clear($this
->getPluginId());
}