function forward_update_8200 in Forward 4.0.x
Same name and namespace in other branches
- 8.3 forward.install \forward_update_8200()
- 8.2 forward.install \forward_update_8200()
- 4.x forward.install \forward_update_8200()
Add the default configuration value for 'forward_form_allow_plain_text'.
File
- ./
forward.install, line 193 - Install, update and uninstall functions for the forward module.
Code
function forward_update_8200() {
\Drupal::configFactory()
->getEditable('forward.settings')
->set('forward_form_allow_plain_text', FALSE)
->save(TRUE);
}