You are here

public function EntityformSubmission::setRevisionCreationTime in Entityform 8.2

Same name and namespace in other branches
  1. 8.3 src/Entity/EntityformSubmission.php \Drupal\entityform\Entity\EntityformSubmission::setRevisionCreationTime()

File

lib/Drupal/entityform/Entity/EntityformSubmission.php, line 153
Definition of Drupal\entityform\Entity\EntityformSubmission.

Class

EntityformSubmission
Defines the entityform entity class.

Namespace

Drupal\entityform\Entity

Code

public function setRevisionCreationTime($timestamp) {
  $this
    ->set('revision_timestamp', $timestamp);
  return $this;
}