You are here

public function Profile::getChangedTime in Profile 2 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 EntityChangedInterface::getChangedTime

File

src/Entity/Profile.php, line 207
Contains \Drupal\profile\Entity\Profile.

Class

Profile
Defines the profile entity class.

Namespace

Drupal\profile\Entity

Code

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