You are here

views_random_seed.install in Views random seed 7

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

Install file.

File

views_random_seed.install
View 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

Namesort descending Description
views_random_seed_uninstall Implements hook_uninstall().