views_random_seed.install in Views random seed 7
Same filename and directory in other branches
Install file.
File
views_random_seed.installView source
<?php
/**
* @file
* Install file.
*/
/**
* Implements hook_uninstall().
*/
function views_random_seed_uninstall() {
db_delete('variable')
->condition('name', 'views_seed%', 'LIKE')
->execute();
cache_clear_all('variables', 'cache');
}
Functions
Name | Description |
---|---|
views_random_seed_uninstall | Implements hook_uninstall(). |