public function Group::getChangedTime in Group 8
Same name and namespace in other branches
- 2.0.x src/Entity/Group.php \Drupal\group\Entity\Group::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/ Group.php, line 140
Class
- Group
- Defines the Group entity.
Namespace
Drupal\group\EntityCode
public function getChangedTime() {
return $this
->get('changed')->value;
}