You are here

function views_random_seed_uninstall in Views random seed 7

Same name and namespace in other branches
  1. 6 views_random_seed.install \views_random_seed_uninstall()

Implements hook_uninstall().

File

./views_random_seed.install, line 11
Install file.

Code

function views_random_seed_uninstall() {
  db_delete('variable')
    ->condition('name', 'views_seed%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache');
}