You are here

function forward_update_8200 in Forward 4.x

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

Add the default configuration value for 'forward_form_allow_plain_text'.

File

./forward.install, line 194
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);
}