You are here

function auditfiles_update_8002 in Audit Files 8.3

Remove auditfiles_report_options_batch_size from configuration.

File

./auditfiles.install, line 36
This file is used to write install Uninstall hooks that used in the module.

Code

function auditfiles_update_8002() {
  $config = \Drupal::service('config.factory')
    ->getEditable('auditfiles.settings');
  $config
    ->clear('auditfiles_report_options_batch_size')
    ->save();
}