background_batch.install in Background Process 8
Same filename and directory in other branches
This is the installation file for the Background Batch submodule.
File
background_batch/background_batch.installView source
<?php
/**
 * @file
 * This is the installation file for the Background Batch submodule.
 */
/**
 * Implements hook_uninstall().
 */
function background_batch_uninstall() {
  $config = \Drupal::getContainer()
    ->get('config.factory')
    ->getEditable('background_batch.settings');
  $config
    ->delete();
}Functions
| Name   | Description | 
|---|---|
| background_batch_uninstall | Implements hook_uninstall(). | 
