You are here

public function Entity::enforceIsNew in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/Entity.php \Drupal\Core\Entity\Entity::enforceIsNew()

Enforces an entity to be new.

Allows migrations to create entities with pre-defined IDs by forcing the entity to be new before saving.

Parameters

bool $value: (optional) Whether the entity should be forced to be new. Defaults to TRUE.

Return value

$this

Overrides EntityInterface::enforceIsNew

See also

\Drupal\Core\Entity\EntityInterface::isNew()

1 call to Entity::enforceIsNew()
Entity::setOriginalId in core/lib/Drupal/Core/Entity/Entity.php
Sets the original ID.

File

core/lib/Drupal/Core/Entity/Entity.php, line 137
Contains \Drupal\Core\Entity\Entity.

Class

Entity
Defines a base entity class.

Namespace

Drupal\Core\Entity

Code

public function enforceIsNew($value = TRUE) {
  $this->enforceIsNew = $value;
  return $this;
}