You are here

function hosting_uninstall in Hosting 7.4

Same name and namespace in other branches
  1. 7.3 hosting.install \hosting_uninstall()

Implements hook_uninstall().

File

./hosting.install, line 13
Define database schemas and update functions for the hosting module.

Code

function hosting_uninstall() {
  variable_del('hosting_dispatch_last_run');
  variable_del('hosting_features_form_settings');
  variable_del('hosting_queue_tasks_items');
  variable_del('hosting_default_db_server');
  variable_del('hosting_own_db_server');
  variable_del('hosting_update_6008_run');
  variable_del('hosting_dispatch_enabled');
  variable_del('hosting_cron_backup');
  variable_del('hosting_task_update_6000_run');
  variable_del('hosting_package_update_6002_run');
  variable_del('hosting_package_update_6004_run');
  variable_del('hosting_platform_update_6004_run');
  variable_del('hosting_queued_process_started');
  variable_del('hosting_queue_tasks_enabled');
}