You are here

public function WebformSubmission::preSave in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Entity/WebformSubmission.php \Drupal\webform\Entity\WebformSubmission::preSave()

Acts on an entity before the presave hook is invoked.

Used before the entity is saved and before invoking the presave hook. Note that in case of translatable content entities this callback is only fired on their current translation. It is up to the developer to iterate over all translations if needed. This is different from its counterpart in the Field API, FieldItemListInterface::preSave(), which is fired on all field translations automatically. @todo Adjust existing implementations and the documentation according to https://www.drupal.org/node/2577609 to have a consistent API.

Parameters

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

Throws

\Exception When there is a problem that should prevent saving the entity.

Overrides ContentEntityBase::preSave

See also

\Drupal\Core\Field\FieldItemListInterface::preSave()

File

src/Entity/WebformSubmission.php, line 840

Class

WebformSubmission
Defines the WebformSubmission entity.

Namespace

Drupal\webform\Entity

Code

public function preSave(EntityStorageInterface $storage) {

  // Because the original data is not stored in the persistent entity storage
  // cache we have to reset it for the original webform submission entity.
  // @see \Drupal\Core\Entity\EntityStorageBase::doPreSave
  // @see \Drupal\Core\Entity\ContentEntityStorageBase::getFromPersistentCache
  if (isset($this->original)) {
    $this->original
      ->setData($this->originalData);
    $this->original
      ->setOriginalData($this->original
      ->getData());
  }
  $request_time = \Drupal::time()
    ->getRequestTime();

  // Set created.
  if (!$this->created->value) {
    $this->created->value = $request_time;
  }

  // Set changed.
  $this->changed->value = $request_time;

  // Set completed.
  if ($this
    ->isDraft()) {
    $this->completed->value = NULL;
  }
  elseif (!$this
    ->isCompleted()) {
    $this->completed->value = $request_time;
  }
  parent::preSave($storage);
}