You are here

protected function ViewsEntitySchemaSubscriber::revisionRemoval in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php \Drupal\views\EventSubscriber\ViewsEntitySchemaSubscriber::revisionRemoval()

Updates views if revision support is removed.

Parameters

\Drupal\views\Entity\View[] $all_views: All views.

\Drupal\Core\Entity\EntityTypeInterface $original: The origin entity type.

1 call to ViewsEntitySchemaSubscriber::revisionRemoval()
ViewsEntitySchemaSubscriber::onEntityTypeUpdate in core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php
Reacts to the update of the entity type.

File

core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php, line 409

Class

ViewsEntitySchemaSubscriber
Reacts to changes on entity types to update all views entities.

Namespace

Drupal\views\EventSubscriber

Code

protected function revisionRemoval($all_views, EntityTypeInterface $original) {
  $revision_base_table = $original
    ->getRevisionTable();
  $revision_data_table = $original
    ->getRevisionDataTable();
  foreach ($all_views as $view) {
    if (in_array($view
      ->get('base_table'), [
      $revision_base_table,
      $revision_data_table,
    ])) {

      // Let's disable the views as we no longer support revisions.
      $view
        ->setStatus(FALSE);
      $view
        ->set('_updated', TRUE);
    }

    // For any kind of field, let's rely on the broken handler functionality.
  }
}