function View::preSave
Overrides ConfigEntityBase::preSave
File
- 
              core/modules/ views/ src/ Entity/ View.php, line 292 
Class
- View
- Defines a View configuration entity class.
Namespace
Drupal\views\EntityCode
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();
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
