You are here

public function LingotekInterfaceTranslationService::loadByDocumentId in Lingotek Translation 3.7.x

Same name and namespace in other branches
  1. 4.0.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::loadByDocumentId()
  2. 3.2.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::loadByDocumentId()
  3. 3.3.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::loadByDocumentId()
  4. 3.4.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::loadByDocumentId()
  5. 3.5.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::loadByDocumentId()
  6. 3.6.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::loadByDocumentId()
  7. 3.8.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::loadByDocumentId()

Loads the component with the given document id.

Parameters

string $document_id: The document id.

Return value

string The component with the given document id.

Overrides LingotekInterfaceTranslationServiceInterface::loadByDocumentId

File

src/LingotekInterfaceTranslationService.php, line 950

Class

LingotekInterfaceTranslationService
Service for managing Lingotek interface translations.

Namespace

Drupal\lingotek

Code

public function loadByDocumentId($document_id) {
  $state = \Drupal::state();
  $translations_metadata = $state
    ->get('lingotek.interface_translations_metadata');
  if ($translations_metadata) {
    foreach ($translations_metadata as $component => $componentMetadata) {
      if ($componentMetadata['document_id'] === $document_id) {
        return $component;
      }
    }
  }
  return NULL;
}