You are here

public function YamlFormSubmission::getChangedTime in YAML Form 8

Gets the timestamp of the last entity change for the current translation.

Return value

int The timestamp of the last entity save operation.

Overrides EntityChangedTrait::getChangedTime

File

src/Entity/YamlFormSubmission.php, line 233

Class

YamlFormSubmission
Defines the YamlFormSubmission entity.

Namespace

Drupal\yamlform\Entity

Code

public function getChangedTime() {
  return $this
    ->get('changed')->value;
}