function HelpSearch::markForReindex
Same name and namespace in other branches
- 8.9.x core/modules/help_topics/src/Plugin/Search/HelpSearch.php \Drupal\help_topics\Plugin\Search\HelpSearch::markForReindex()
- 10 core/modules/help/src/Plugin/Search/HelpSearch.php \Drupal\help\Plugin\Search\HelpSearch::markForReindex()
- 11.x core/modules/help/src/Plugin/Search/HelpSearch.php \Drupal\help\Plugin\Search\HelpSearch::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
File
-
core/
modules/ help_topics/ src/ Plugin/ Search/ HelpSearch.php, line 458
Class
- HelpSearch
- Handles searching for help using the Search module index.
Namespace
Drupal\help_topics\Plugin\SearchCode
public function markForReindex() {
$this->updateTopicList();
$this->searchIndex
->markForReindex($this->getType());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.