You are here

public function SearchApiExternalDataSourceController::trackItemIndexed in Search API 7

Set the tracking status of the given items to "indexed".

Parameters

array $item_ids: The IDs of the indexed items.

SearchApiIndex $indexes: The index on which the items were indexed.

Throws

SearchApiDataSourceException If the index doesn't use the same item type as this controller.

Overrides SearchApiAbstractDataSourceController::trackItemIndexed

File

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

Class

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

Code

public function trackItemIndexed(array $item_ids, SearchApiIndex $index) {
  return;
}