You are here

function block_refresh_uninstall in Block Refresh 7

Same name and namespace in other branches
  1. 6 block_refresh.install \block_refresh_uninstall()
  2. 7.2 block_refresh.install \block_refresh_uninstall()

Implements hook_uninstall().

File

./block_refresh.install, line 36
Install, update and uninstall functions for the block_refresh module.

Code

function block_refresh_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'block_refresh_%'");
}