You are here

function nodesinblock_uninstall in Nodes In Block 6

Same name and namespace in other branches
  1. 7 nodesinblock.install \nodesinblock_uninstall()

Implementation of hook_uninstall().

File

./nodesinblock.install, line 18
Nodes in block install file.

Code

function nodesinblock_uninstall() {
  drupal_uninstall_schema('nodesinblock');
  db_query("DELETE FROM {variable} WHERE name LIKE 'nodesinblock_%%'");
  db_query("DELETE FROM {blocks} where module = 'nodesinblock'");
  cache_clear_all('variables', 'cache');
}