public function SearchApiExternalDataSourceController::startTracking in Search API 7
Initialize tracking of the index status of items for the given indexes.
All currently known items of this data source's type should be inserted into the tracking table for the given indexes, with status "changed". If items were already present, these should also be set to "changed" and not be inserted again.
Parameters
array $indexes: The SearchApiIndex objects for which item tracking should be initialized.
Throws
SearchApiDataSourceException If any of the indexes doesn't use the same item type as this controller.
Overrides SearchApiAbstractDataSourceController::startTracking
File
- includes/
datasource_external.inc, line 136 - Contains the SearchApiExternalDataSourceController class.
Class
- SearchApiExternalDataSourceController
- Base class for data source controllers for external data sources.
Code
public function startTracking(array $indexes) {
return;
}