You are here

public function MaestroProcess::getChangedTime in Maestro 3.x

Same name and namespace in other branches
  1. 8.2 src/Entity/MaestroProcess.php \Drupal\maestro\Entity\MaestroProcess::getChangedTime()

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/MaestroProcess.php, line 76

Class

MaestroProcess
Defines the MaestroProcess entity.

Namespace

Drupal\maestro\Entity

Code

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