You are here

public function SearchApiExternalDataSourceController::stopTracking in Search API 7

Stop tracking of the index status of items for the given indexes.

The tracking tables of the given indexes should be completely cleared.

Parameters

array $indexes: The SearchApiIndex objects for which item tracking should be stopped.

Throws

SearchApiDataSourceException If any of the indexes doesn't use the same item type as this controller.

Overrides SearchApiAbstractDataSourceController::stopTracking

File

includes/datasource_external.inc, line 151
Contains the SearchApiExternalDataSourceController class.

Class

SearchApiExternalDataSourceController
Base class for data source controllers for external data sources.

Code

public function stopTracking(array $indexes) {
  return;
}