You are here

function copyright_block_uninstall in Copyright Block module 7.2

Same name and namespace in other branches
  1. 6 copyright_block.install \copyright_block_uninstall()
  2. 7 copyright_block.install \copyright_block_uninstall()

Implements hook_uninstall().

File

./copyright_block.install, line 24
Install, update and uninstall functions for the Copyright Block module.

Code

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