You are here

function poormanscron_uninstall in Poormanscron 5

Same name and namespace in other branches
  1. 5.2 poormanscron.install \poormanscron_uninstall()
  2. 6.2 poormanscron.install \poormanscron_uninstall()
  3. 6 poormanscron.install \poormanscron_uninstall()

Implementation of hook_uninstall().

File

./poormanscron.install, line 6

Code

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