function views_random_seed_uninstall in Views random seed 6
Same name and namespace in other branches
- 7 views_random_seed.install \views_random_seed_uninstall()
Implementation of hook_uninstall().
File
- ./
views_random_seed.install, line 6
Code
function views_random_seed_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'views_seed%%'");
cache_clear_all('variables', 'cache');
}