function EntityStorageBase::save

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Entity/EntityStorageBase.php \Drupal\Core\Entity\EntityStorageBase::save()
1 method overrides EntityStorageBase::save()
SqlContentEntityStorage::save in core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php
Saves the entity permanently.

File

core/lib/Drupal/Core/Entity/EntityStorageBase.php, line 512

Class

EntityStorageBase
A base entity storage class.

Namespace

Drupal\Core\Entity

Code

public function save(EntityInterface $entity) {
  // Track if this entity is new.
  $is_new = $entity->isNew();
  // Execute presave logic and invoke the related hooks.
  $id = $this->doPreSave($entity);
  // Perform the save and reset the static cache for the changed entity.
  $return = $this->doSave($id, $entity);
  // Execute post save logic and invoke the related hooks.
  $this->doPostSave($entity, !$is_new);
  return $return;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.