You are here

public static function EntityBase::preCreate in Drupal 9

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

Changes the values of an entity before it is created.

Load defaults for example.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.

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

Overrides EntityInterface::preCreate

3 calls to EntityBase::preCreate()
EntityTest::preCreate in core/modules/system/tests/modules/entity_test/src/Entity/EntityTest.php
Changes the values of an entity before it is created.
EntityTestUpdate::preCreate in core/modules/system/tests/modules/entity_test_update/src/Entity/EntityTestUpdate.php
Changes the values of an entity before it is created.
View::preCreate in core/modules/views/src/Entity/View.php
Changes the values of an entity before it is created.
7 methods override EntityBase::preCreate()
Comment::preCreate in core/modules/comment/src/Entity/Comment.php
Changes the values of an entity before it is created.
EntityTest::preCreate in core/modules/system/tests/modules/entity_test/src/Entity/EntityTest.php
Changes the values of an entity before it is created.
EntityTestUpdate::preCreate in core/modules/system/tests/modules/entity_test_update/src/Entity/EntityTestUpdate.php
Changes the values of an entity before it is created.
Feed::preCreate in core/modules/aggregator/src/Entity/Feed.php
Changes the values of an entity before it is created.
File::preCreate in core/modules/file/src/Entity/File.php
Changes the values of an entity before it is created.

... See full list

File

core/lib/Drupal/Core/Entity/EntityBase.php, line 398

Class

EntityBase
Defines a base entity class.

Namespace

Drupal\Core\Entity

Code

public static function preCreate(EntityStorageInterface $storage, array &$values) {
}