public function LingotekInterfaceTranslationService::setLastUpdated in Lingotek Translation 3.8.x
Same name and namespace in other branches
- 4.0.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setLastUpdated()
- 3.4.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setLastUpdated()
- 3.5.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setLastUpdated()
- 3.6.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setLastUpdated()
- 3.7.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setLastUpdated()
Updates the 'updated date' time metadata to the current request time.
Parameters
string $component: The component for which we want to update the timestamp.
int $timestamp: The timestamp we want to store.
Return value
string Returns the component which translations are saved.
Overrides LingotekInterfaceTranslationServiceInterface::setLastUpdated
1 call to LingotekInterfaceTranslationService::setLastUpdated()
- LingotekInterfaceTranslationService::updateDocument in src/
LingotekInterfaceTranslationService.php - Resends a document to the translation service.
File
- src/
LingotekInterfaceTranslationService.php, line 1161
Class
- LingotekInterfaceTranslationService
- Service for managing Lingotek interface translations.
Namespace
Drupal\lingotekCode
public function setLastUpdated($component, int $timestamp) {
$metadata = $this
->getMetadata($component);
$metadata['updated_timestamp'] = $timestamp;
$this
->saveMetadata($component, $metadata);
return $component;
}