You are here

function automatic_updates_uninstall in Automatic Updates 7

Implements hook_uninstall().

File

./automatic_updates.install, line 11
Install, update and uninstall functions for the automatic_updates module.

Code

function automatic_updates_uninstall() {
  variable_del('automatic_updates_psa_endpoint');
  variable_del('automatic_updates_enable_psa');
  variable_del('automatic_updates_notify');
  variable_del('automatic_updates_enable_readiness_checks');
  variable_del('automatic_updates.readiness_check_results.error');
  variable_del('automatic_updates.readiness_check_results.warning');
  variable_del('automatic_updates.readiness_check_timestamp');
  variable_del('automatic_updates_check_frequency');
  variable_del('automatic_updates.notify_last_check');
  variable_del('automatic_updates_ignored_paths');
  variable_del('automatic_updates_php_sapi');
  variable_del('automatic_updates_hashes_uri');
  variable_del('automatic_updates_download_uri');
  variable_del('automatic_updates_enable_cron_updates');
  variable_del('automatic_updates_enable_cron_security_updates');
  variable_del('automatic_updates.cron_last_check');
}