You are here

flippy.install in Flippy 7

Same filename and directory in other branches
  1. 8 flippy.install

Flippy install file.

File

flippy.install
View source
<?php

/**
 * @file
 * Flippy install file.
 */

/**
 * Remove the internal caching feature, as Views now supports caching of query results.
 */
function flippy_uninstall() {

  // We should delete variables and stuff and things.
  db_delete('variable')
    ->condition('name', db_like('flippy_') . '%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache_bootstrap');
}

Functions

Namesort descending Description
flippy_uninstall Remove the internal caching feature, as Views now supports caching of query results.