You are here

function block_refresh_uninstall in Block Refresh 6

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

Implementation of hook_uninstall().

File

./block_refresh.install, line 33
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_%'");
}