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