public function LingotekConfigTranslationService::getDocumentId in Lingotek Translation 8
Same name and namespace in other branches
- 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.4.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
9 calls to LingotekConfigTranslationService::getDocumentId()
- LingotekConfigTranslationService::addTarget in src/
LingotekConfigTranslationService.php - Request 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.
- LingotekConfigTranslationService::checkTargetStatuses in src/
LingotekConfigTranslationService.php - Checks the status of all the translations in the Lingotek service.
- LingotekConfigTranslationService::deleteDocument in src/
LingotekConfigTranslationService.php - Deletes a document from the server and all related local data.
File
- src/
LingotekConfigTranslationService.php, line 176 - Contains \Drupal\lingotek\LingotekConfigTranslationService.
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();
}