Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ViewsEntitySchemaSubscriber.php

function 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 412

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);
            $this->viewsToSave[$view->id()] = $view;
        }
        // For any kind of field, let's rely on the broken handler functionality.
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal