background_batch.install 344 B

123456789101112131415
  1. <?php
  2. /**
  3. * @file
  4. * This is the installation file for the Background Batch submodule
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. */
  9. function background_batch_uninstall() {
  10. // Removing used variables.
  11. variable_del('background_batch_delay');
  12. variable_del('background_batch_process_lifespan');
  13. variable_del('background_batch_show_eta');
  14. }