1 filter.install filter_update_1003()

Make the image_library view module-provided.

Related topics

File

core/modules/filter/filter.install, line 476
Install, update, and uninstall functions for the Filter module.

Code

function filter_update_1003() {
  $config = config('views.view.image_library');
  $config->set('module', 'filter');
  $config->save();
}