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

Sets the original ID.

Parameters

int|string|null $id: The new ID to set as original ID. If the entity supports renames, setting NULL will prevent an update from being considered a rename.

Return value

$this

Overrides EntityBase::setOriginalId

1 call to ConfigEntityBase::setOriginalId()
ConfigEntityBase::__construct in core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
Constructs an Entity object.

File

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

Class

ConfigEntityBase

Namespace

Drupal\Core\Config\Entity

Code

public function setOriginalId($id) {

  // Do not call the parent method since that would mark this entity as no
  // longer new. Unlike content entities, new configuration entities have an
  // ID.
  // @todo https://www.drupal.org/node/2478811 Document the entity life cycle
  //   and the differences between config and content.
  $this->originalId = $id;
  return $this;
}