public function LingotekConfigTranslationService::getDocumentId in Lingotek Translation 3.4.x
Same name and namespace in other branches
- 8 src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
- 8.2 src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
- 4.0.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
- 3.0.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
- 3.1.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
- 3.2.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
- 3.3.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
- 3.5.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
- 3.6.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
- 3.7.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
- 3.8.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::getDocumentId()
Gets the document id in the Lingotek platform for a given entity.
Parameters
\Drupal\Core\Config\Entity\ConfigEntityInterface $entity: The entity which we want the document id.
Return value
string The document id in the Lingotek platform.
Overrides LingotekConfigTranslationServiceInterface::getDocumentId
12 calls to LingotekConfigTranslationService::getDocumentId()
- LingotekConfigTranslationService::addTarget in src/
LingotekConfigTranslationService.php - Request a translation for a given entity in the given locale.
- LingotekConfigTranslationService::cancelDocument in src/
LingotekConfigTranslationService.php - Cancels a document from the server.
- LingotekConfigTranslationService::cancelDocumentTarget in src/
LingotekConfigTranslationService.php - Cancels a translation for a given entity in the given locale.
- LingotekConfigTranslationService::checkSourceStatus in src/
LingotekConfigTranslationService.php - Checks the source is uploaded correctly.
- LingotekConfigTranslationService::checkTargetStatus in src/
LingotekConfigTranslationService.php - Checks the status of the translation in the Lingotek service.
File
- src/
LingotekConfigTranslationService.php, line 165
Class
- LingotekConfigTranslationService
- Service for managing Lingotek configuration translations.
Namespace
Drupal\lingotekCode
public function getDocumentId(ConfigEntityInterface $entity) {
$metadata = LingotekConfigMetadata::loadByConfigName($entity
->getEntityTypeId() . '.' . $entity
->id());
return $metadata
->getDocumentId();
}