public function EntityBase::isNew in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/EntityBase.php \Drupal\Core\Entity\EntityBase::isNew()
Determines whether the entity is new.
Usually an entity is new if no ID exists for it yet. However, entities may be enforced to be new with existing IDs too.
Return value
bool TRUE if the entity is new, or FALSE if the entity has already been saved.
Overrides EntityInterface::isNew
See also
\Drupal\Core\Entity\EntityInterface::enforceIsNew()
9 calls to EntityBase::isNew()
- Comment::preSave in core/
modules/ comment/ src/ Entity/ Comment.php - Acts on an entity before the presave hook is invoked.
- ContentEntityBase::hasTranslationChanges in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - Determines if the current translation of the entity has unsaved changes.
- ContentEntityBase::isDefaultRevision in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - Checks if this entity is the default revision.
- ContentEntityBase::onChange in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - Reacts to changes to a field.
- ContentEntityBase::wasDefaultRevision in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - Checks whether the entity object was a default revision when it was saved.
2 methods override EntityBase::isNew()
- ConfigEntityBase::isNew in core/
lib/ Drupal/ Core/ Config/ Entity/ ConfigEntityBase.php - Overrides Entity::isNew().
- User::isNew in core/
modules/ user/ src/ Entity/ User.php - Determines whether the entity is new.
File
- core/
lib/ Drupal/ Core/ Entity/ EntityBase.php, line 120
Class
- EntityBase
- Defines a base entity class.
Namespace
Drupal\Core\EntityCode
public function isNew() {
return !empty($this->enforceIsNew) || !$this
->id();
}