You are here

public function EntityBase::save in Drupal 9

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

Saves an entity permanently.

When saving existing entities, the entity is assumed to be complete, partial updates of entities are not supported.

Return value

int Either SAVED_NEW or SAVED_UPDATED, depending on the operation performed.

Throws

\Drupal\Core\Entity\EntityStorageException In case of failures an exception is thrown.

Overrides EntityInterface::save

5 calls to EntityBase::save()
ConfigEntityBase::save in core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
Saves an entity permanently.
ContentModerationState::realSave in core/modules/content_moderation/src/Entity/ContentModerationState.php
Saves an entity permanently.
EntityTestMulChanged::save in core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulChanged.php
Saves an entity permanently.
Feed::deleteItems in core/modules/aggregator/src/Entity/Feed.php
Deletes all items from a feed.
Feed::refreshItems in core/modules/aggregator/src/Entity/Feed.php
Updates the feed items by triggering the import process.
3 methods override EntityBase::save()
ConfigEntityBase::save in core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
Saves an entity permanently.
ContentModerationState::save in core/modules/content_moderation/src/Entity/ContentModerationState.php
Saves an entity permanently.
EntityTestMulChanged::save in core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulChanged.php
Saves an entity permanently.

File

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

Class

EntityBase
Defines a base entity class.

Namespace

Drupal\Core\Entity

Code

public function save() {
  $storage = $this
    ->entityTypeManager()
    ->getStorage($this->entityTypeId);
  return $storage
    ->save($this);
}