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\EntityCode
public function getChangedTime() {
return $this
->get('changed')->value;
}