public function ConfigEntityBase::__construct

public ConfigEntityBase::__construct(array $values, $entity_type)

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 Entity::__construct

File

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

Class

ConfigEntityBase
Defines a base configuration entity class.

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);
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!Entity!ConfigEntityBase.php/function/ConfigEntityBase::__construct/8.1.x