protected ContentEntityStorageBase::doPreSave(EntityInterface $entity)
Performs presave entity processing.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The saved entity.
Return value
int|string The processed entity identifier.
Throws
\Drupal\Core\Entity\EntityStorageException If the entity identifier is invalid.
Overrides EntityStorageBase::doPreSave
File
- core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php, line 285
Class
- ContentEntityStorageBase
- Base class for content entity storage handlers.
Namespace
Drupal\Core\Entity
Code
protected function doPreSave(EntityInterface $entity) { /** @var \Drupal\Core\Entity\ContentEntityBase $entity */ // Sync the changes made in the fields array to the internal values array. $entity->updateOriginalValues(); return parent::doPreSave($entity); }
Please login to continue.