You are here

function forward_update_8204 in Forward 4.x

Same name and namespace in other branches
  1. 8.2 forward.install \forward_update_8204()
  2. 4.0.x forward.install \forward_update_8204()

Purge the stale configuration value for 'forward_filter_format'.

File

./forward.install, line 232
Install, update and uninstall functions for the forward module.

Code

function forward_update_8204() {
  \Drupal::configFactory()
    ->getEditable('forward.settings')
    ->clear('forward_filter_format')
    ->save();
}