You are here

poormanscron.install in Poormanscron 6

File

poormanscron.install
View source
<?php

/**
 * Implementation of hook_uninstall().
 */
function poormanscron_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'poormanscron_%'");
  cache_clear_all('variables', 'cache');
}

Functions

Namesort descending Description
poormanscron_uninstall Implementation of hook_uninstall().