public function SearchApiExternalDataSourceController::trackItemInsert in Search API 7
Start tracking the index status for the given items on the given indexes.
Parameters
array $item_ids: The IDs of new items to track.
array $indexes: The indexes for which items should be tracked.
Throws
SearchApiDataSourceException If any of the indexes doesn't use the same item type as this controller.
Overrides SearchApiAbstractDataSourceController::trackItemInsert
File
- includes/
datasource_external.inc, line 166 - Contains the SearchApiExternalDataSourceController class.
Class
- SearchApiExternalDataSourceController
- Base class for data source controllers for external data sources.
Code
public function trackItemInsert(array $item_ids, array $indexes) {
return;
}