You are here

views_random_seed.install in Views random seed 6

Same filename and directory in other branches
  1. 7 views_random_seed.install

File

views_random_seed.install
View source
<?php

/**
 * Implementation of hook_uninstall().
 */
function views_random_seed_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'views_seed%%'");
  cache_clear_all('variables', 'cache');
}

Functions

Namesort descending Description
views_random_seed_uninstall Implementation of hook_uninstall().