You are here

public function PhotosImageSearch::indexClear in Album Photos 8.5

Same name and namespace in other branches
  1. 6.0.x src/Plugin/Search/PhotosImageSearch.php \Drupal\photos\Plugin\Search\PhotosImageSearch::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 clear($type) method on the search.index service class to remove indexed items from the search database.

Overrides SearchIndexingInterface::indexClear

See also

\Drupal\search\SearchIndexInterface::clear()

File

src/Plugin/Search/PhotosImageSearch.php, line 550

Class

PhotosImageSearch
Handles searching for photos_image entities using the Search module index.

Namespace

Drupal\photos\Plugin\Search

Code

public function indexClear() {

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