public function SearchApiIndex::dequeueItems in Search API 7
Remove all records of entities to index.
1 call to SearchApiIndex::dequeueItems()
- SearchApiIndex::postDelete in includes/
index_entity.inc - Execute necessary tasks when the index is removed from the database.
File
- includes/
index_entity.inc, line 234 - Contains SearchApiIndex.
Class
- SearchApiIndex
- Class representing a search index.
Code
public function dequeueItems() {
try {
$this
->datasource()
->stopTracking(array(
$this,
));
} catch (SearchApiException $e) {
watchdog_exception('search_api', $e);
}
}