You are here

background_batch.install in Background Process 8

This is the installation file for the Background Batch submodule.

File

background_batch/background_batch.install
View 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

Namesort descending Description
background_batch_uninstall Implements hook_uninstall().