You are here

function advagg_update_8202 in Advanced CSS/JS Aggregation 8.4

Same name and namespace in other branches
  1. 8.2 advagg.install \advagg_update_8202()
  2. 8.3 advagg.install \advagg_update_8202()

Implements hook_update_N().

Remove unused configuration keys.

File

./advagg.install, line 131
Handles Advanced Aggregation installation and upgrade tasks.

Code

function advagg_update_8202() {
  \Drupal::configFactory()
    ->getEditable('advagg.settings')
    ->clear('separator')
    ->clear('advagg_clear_scripts')
    ->save();
}