public function LingotekInterfaceTranslationService::setDocumentId in Lingotek Translation 3.2.x
Same name and namespace in other branches
- 4.0.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setDocumentId()
- 3.3.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setDocumentId()
- 3.4.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setDocumentId()
- 3.5.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setDocumentId()
- 3.6.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setDocumentId()
- 3.7.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setDocumentId()
- 3.8.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::setDocumentId()
Sets the Lingotek document id for a given component.
Parameters
string $component: The component which we want to set a document id.
$doc_id: The document id in the Lingotek platform.
Return value
string The component.
Overrides LingotekInterfaceTranslationServiceInterface::setDocumentId
6 calls to LingotekInterfaceTranslationService::setDocumentId()
- LingotekInterfaceTranslationService::addTarget in src/
LingotekInterfaceTranslationService.php - Request a translation for a given component in the given locale.
- LingotekInterfaceTranslationService::cancelDocument in src/
LingotekInterfaceTranslationService.php - Cancels a document from the server.
- LingotekInterfaceTranslationService::requestTranslations in src/
LingotekInterfaceTranslationService.php - Requests translations of a document in all the enabled locales.
- LingotekInterfaceTranslationService::setJobId in src/
LingotekInterfaceTranslationService.php - Sets the job ID of a given component.
- LingotekInterfaceTranslationService::updateDocument in src/
LingotekInterfaceTranslationService.php - Resends a document to the translation service.
File
- src/
LingotekInterfaceTranslationService.php, line 384
Class
- LingotekInterfaceTranslationService
- Service for managing Lingotek interface translations.
Namespace
Drupal\lingotekCode
public function setDocumentId($component, $doc_id) {
$metadata = $this
->getMetadata($component);
$metadata['document_id'] = $doc_id;
$this
->saveMetadata($component, $metadata);
return $component;
}