function opigno_learning_path_update_8021 in Opigno Learning path 8
Reload Learning Path Media Entity Browser config to fix translations.
File
- ./
opigno_learning_path.install, line 621 - Install, update and uninstall functions for the module.
Code
function opigno_learning_path_update_8021() {
$config_path = drupal_get_path('module', 'opigno_learning_path') . '/config/optional';
$storage = new FileStorage($config_path);
$config_storage = \Drupal::service('config.storage');
$data = $storage
->read('entity_browser.browser.media_entity_browser_groups');
$config_storage
->write('entity_browser.browser.media_entity_browser_groups', $data);
}