You are here

function background_process_uninstall in Background Process 7

Same name and namespace in other branches
  1. 8 background_process.install \background_process_uninstall()
  2. 6 background_process.install \background_process_uninstall()
  3. 7.2 background_process.install \background_process_uninstall()

Implements hook_uninstall().

File

./background_process.install, line 75
This is the installation file for the Background Process module

Code

function background_process_uninstall() {

  // Removing process variables.
  variable_del('background_process_service_timeout');
  variable_del('background_process_connection_timeout');
  variable_del('background_process_stream_timeout');
  variable_del('background_process_service_groups');
  variable_del('background_process_default_service_group');
  variable_del('background_process_service_hosts');
  variable_del('background_process_default_service_host');
  variable_del('background_process_cleanup_age');
  variable_del('background_process_queues');
  variable_del('background_process_derived_default_host');
  variable_del('background_process_token');
}