views_random_seed.install in Views random seed 6
Same filename and directory in other branches
File
views_random_seed.installView 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
Name | Description |
---|---|
views_random_seed_uninstall | Implementation of hook_uninstall(). |