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

Breadcrumb

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

function View::preCreate

Overrides EntityBase::preCreate

File

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

Class

View
Defines a View configuration entity class.

Namespace

Drupal\views\Entity

Code

public static function preCreate(EntityStorageInterface $storage, array &$values) {
    parent::preCreate($storage, $values);
    // If there is no information about displays available add at least the
    // default display.
    $values += [
        'display' => [
            'default' => [
                'display_plugin' => 'default',
                'id' => 'default',
                'display_title' => 'Default',
                'position' => 0,
                'display_options' => [],
            ],
        ],
    ];
}
RSS feed
Powered by Drupal