You are here

function tagadelic_uninstall in Tagadelic 5

Implementaton of hook_uninstall

File

./tagadelic.install, line 13

Code

function tagadelic_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'tagadelic_%'");
  db_query("DELETE FROM {blocks} WHERE module = 'tagadelic'");
  db_query("DELETE FROM {system} WHERE name = 'tagadelic'");
}