You are here

public function FileSearch::indexClear in Search File Attachments 8

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/FileSearch.php, line 286

Class

FileSearch
Executes a keyword search for files against {file_managed} database table.

Namespace

Drupal\search_file_attachments\Plugin\Search

Code

public function indexClear() {

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