You are here

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

Attaches Flmngr file manager to file fields

File

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

Code

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