function poormanscron_uninstall in Poormanscron 5.2
Same name and namespace in other branches
- 5 poormanscron.install \poormanscron_uninstall()
- 6.2 poormanscron.install \poormanscron_uninstall()
- 6 poormanscron.install \poormanscron_uninstall()
Implements hook_uninstall().
File
- ./
poormanscron.install, line 11 - Install, update and uninstall functions for the poormanscron module.
Code
function poormanscron_uninstall() {
variable_del('poormanscron_interval');
variable_del('poormanscron_retry_interval');
variable_del('poormanscron_log_cron_runs');
variable_del('cron_safe_threshold');
variable_del('cron_threshold_semaphore');
}