public function LingotekConfigMetadata::setLastUpdated in Lingotek Translation 3.6.x
Same name and namespace in other branches
- 4.0.x src/Entity/LingotekConfigMetadata.php \Drupal\lingotek\Entity\LingotekConfigMetadata::setLastUpdated()
- 3.4.x src/Entity/LingotekConfigMetadata.php \Drupal\lingotek\Entity\LingotekConfigMetadata::setLastUpdated()
- 3.5.x src/Entity/LingotekConfigMetadata.php \Drupal\lingotek\Entity\LingotekConfigMetadata::setLastUpdated()
- 3.7.x src/Entity/LingotekConfigMetadata.php \Drupal\lingotek\Entity\LingotekConfigMetadata::setLastUpdated()
- 3.8.x src/Entity/LingotekConfigMetadata.php \Drupal\lingotek\Entity\LingotekConfigMetadata::setLastUpdated()
Sets the timestamp for the time of the initial upload.
Parameters
int $timestamp: The unix timestamp of the event.
Return value
$this
Overrides LingotekConfigMetadataInterface::setLastUpdated
File
- src/
Entity/ LingotekConfigMetadata.php, line 196
Class
- LingotekConfigMetadata
- Defines the Lingotek config metadata entity.
Namespace
Drupal\lingotek\EntityCode
public function setLastUpdated($timestamp) {
$this->updated_timestamp = $timestamp;
return $this;
}