You are here

function views_post_update_field_formatter_dependencies in Drupal 8

Include field formatter dependencies in a view when the formatter is used.

File

core/modules/views/views.post_update.php, line 133
Post update functions for Views.

Code

function views_post_update_field_formatter_dependencies() {
  $views = View::loadMultiple();
  array_walk($views, function (View $view) {
    $view
      ->save();
  });
}