You are here

function file_entity_search_reset in File Entity (fieldable files) 7.3

Same name and namespace in other branches
  1. 7.2 file_entity.module \file_entity_search_reset()

Implements hook_search_reset().

File

./file_entity.module, line 546
Extends Drupal file entities to be fieldable and viewable.

Code

function file_entity_search_reset() {
  db_update('search_dataset')
    ->fields(array(
    'reindex' => REQUEST_TIME,
  ))
    ->condition('type', 'file')
    ->execute();
}