function forward_update_8203 in Forward 4.0.x
Same name and namespace in other branches
- 8.2 forward.install \forward_update_8203()
- 4.x forward.install \forward_update_8203()
Remove the configuration value for 'forward_max_recipients_error'.
File
- ./
forward.install, line 222 - Install, update and uninstall functions for the forward module.
Code
function forward_update_8203() {
\Drupal::configFactory()
->getEditable('forward.settings')
->clear('forward_max_recipients_error')
->save(TRUE);
}