You are here

function tinybrowser_uninstall in TinyBrowser 7

Implements hook_uninstall().

File

./tinybrowser.install, line 23
Install, update and uninstall functions for tinybrowser module.

Code

function tinybrowser_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'tinybrowser%'");
  cache_clear_all('variables', 'cache');
}