function background_process_uninstall in Background Process 6
Same name and namespace in other branches
- 8 background_process.install \background_process_uninstall()
- 7.2 background_process.install \background_process_uninstall()
- 7 background_process.install \background_process_uninstall()
Implements hook_uninstall().
File
- ./
background_process.install, line 24 - This is the installation file for the Background Process module
Code
function background_process_uninstall() {
drupal_uninstall_schema('background_process');
// 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');
}