Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::__construct()
  2. 9 core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::__construct()

Constructs an Entity object.

Parameters

array $values: An array of values to set, keyed by property name. If the entity type has bundles, the bundle key has to be specified.

string $entity_type: The type of the entity to create.

Overrides EntityBase::__construct

5 calls to ConfigEntityBase::__construct()
Editor::__construct in core/modules/editor/src/Entity/Editor.php
Constructs an Entity object.
EntityDisplayBase::__construct in core/lib/Drupal/Core/Entity/EntityDisplayBase.php
Constructs an Entity object.
ResponsiveImageStyle::__construct in core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php
Constructs an Entity object.
RestResourceConfig::__construct in core/modules/rest/src/Entity/RestResourceConfig.php
Constructs an Entity object.
Tour::__construct in core/modules/tour/src/Entity/Tour.php
Constructs an Entity object.
6 methods override ConfigEntityBase::__construct()
Editor::__construct in core/modules/editor/src/Entity/Editor.php
Constructs an Entity object.
EntityDisplayBase::__construct in core/lib/Drupal/Core/Entity/EntityDisplayBase.php
Constructs an Entity object.
ResponsiveImageStyle::__construct in core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php
Constructs an Entity object.
RestResourceConfig::__construct in core/modules/rest/src/Entity/RestResourceConfig.php
Constructs an Entity object.
TestSearchPage::__construct in core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php
Constructs an Entity object.

... See full list

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 108

Class

ConfigEntityBase

Namespace

Drupal\Core\Config\Entity

Code

public function __construct(array $values, $entity_type) {
  parent::__construct($values, $entity_type);

  // Backup the original ID, if any.
  // Configuration entity IDs are strings, and '0' is a valid ID.
  $original_id = $this
    ->id();
  if ($original_id !== NULL && $original_id !== '') {
    $this
      ->setOriginalId($original_id);
  }
}