You are here

public function Entity::save 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::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

4 calls to Entity::save()
ConfigEntityBase::save in core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.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.
2 methods override Entity::save()
ConfigEntityBase::save in core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.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/Entity.php, line 367
Contains \Drupal\Core\Entity\Entity.

Class

Entity
Defines a base entity class.

Namespace

Drupal\Core\Entity

Code

public function save() {
  return $this
    ->entityManager()
    ->getStorage($this->entityTypeId)
    ->save($this);
}