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

Breadcrumb

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

function View::preSave

Overrides ConfigEntityBase::preSave

File

core/modules/views/src/Entity/View.php, line 288

Class

View
Defines a View configuration entity class.

Namespace

Drupal\views\Entity

Code

public function preSave(EntityStorageInterface $storage) {
    parent::preSave($storage);
    $displays = $this->get('display');
    // Sort the displays.
    ksort($displays);
    $this->set('display', [
        'default' => $displays['default'],
    ] + $displays);
    // Calculating the cacheability metadata is only needed when the view is
    // saved through the UI or API. It should not be done when we are syncing
    // configuration or installing modules.
    if (!$this->isSyncing() && !$this->hasTrustedData()) {
        $this->addCacheMetadata();
    }
}
RSS feed
Powered by Drupal