You are here

public function NodeSearch::markForReindex in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/Search/NodeSearch.php \Drupal\node\Plugin\Search\NodeSearch::markForReindex()
  2. 10 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 markForReindex($type) method on the search.index service class to mark the items in the search database for reindexing.

Overrides SearchIndexingInterface::markForReindex

See also

\Drupal\search\SearchIndexInterface::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\Search

Code

public function markForReindex() {

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