You are here

function search_api_live_results_search_api_index_delete in Search API live results 7

Implements hook_search_api_index_delete().

File

./search_api_live_results.module, line 188

Code

function search_api_live_results_search_api_index_delete(SearchApiIndex $index) {
  if (!$index
    ->hasStatus(ENTITY_IN_CODE)) {
    $ids = db_query('SELECT id FROM {search_api_live_results_search} WHERE index_id = :id', array(
      ':id' => $index->machine_name,
    ))
      ->fetchCol();
    if ($ids) {
      entity_delete_multiple('search_api_live_results_search', $ids);
    }
  }
}