You are here

function n1ed_update_8237 in N1ED - Visual editor as CKEditor plugin with Bootstrap support 8.2

File

./n1ed.install, line 210
Installation hooks for N1ED module.

Code

function n1ed_update_8237() {
  $config = \Drupal::service('config.factory')
    ->getEditable('n1ed.settings');
  $config
    ->set('selfHosted', false);
  $config
    ->save(true);
  drupal_flush_all_caches();
}