You are here

public function NodeSearch::indexClear in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/Search/NodeSearch.php \Drupal\node\Plugin\Search\NodeSearch::indexClear()
  2. 9 core/modules/node/src/Plugin/Search/NodeSearch.php \Drupal\node\Plugin\Search\NodeSearch::indexClear()

File

core/modules/node/src/Plugin/Search/NodeSearch.php, line 542

Class

NodeSearch
Handles searching for node entities using the Search module index.

Namespace

Drupal\node\Plugin\Search

Code

public function indexClear() {

  // All NodeSearch pages share a common search index "type" equal to
  // the plugin ID.
  $this->searchIndex
    ->clear($this
    ->getPluginId());
}