public function EntityChangedTrait::setChangedTime in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/EntityChangedTrait.php \Drupal\Core\Entity\EntityChangedTrait::setChangedTime()
- 9 core/lib/Drupal/Core/Entity/EntityChangedTrait.php \Drupal\Core\Entity\EntityChangedTrait::setChangedTime()
Sets the timestamp of the last entity change for the current translation.
Parameters
int $timestamp: The timestamp of the last entity save operation.
Return value
$this
File
- core/
lib/ Drupal/ Core/ Entity/ EntityChangedTrait.php, line 44
Class
- EntityChangedTrait
- Provides a trait for accessing changed time.
Namespace
Drupal\Core\EntityCode
public function setChangedTime($timestamp) {
$this
->set('changed', $timestamp);
return $this;
}