You are here

public function LingotekInterfaceTranslationService::deleteMetadata in Lingotek Translation 3.3.x

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

Deletes all local metadata related to an component.

Parameters

string $component: The component which we want to forget about.

Return value

string The component.

Overrides LingotekInterfaceTranslationServiceInterface::deleteMetadata

4 calls to LingotekInterfaceTranslationService::deleteMetadata()
LingotekInterfaceTranslationService::addTarget in src/LingotekInterfaceTranslationService.php
Request a translation for a given component in the given locale.
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 824

Class

LingotekInterfaceTranslationService
Service for managing Lingotek interface translations.

Namespace

Drupal\lingotek

Code

public function deleteMetadata($component) {
  $doc_id = $this
    ->getDocumentId($component);
  if ($doc_id) {
    $this
      ->cancelDocument($component);
  }
  $state = \Drupal::state();
  $translations_metadata = $state
    ->get('lingotek.interface_translations_metadata');
  if ($translations_metadata) {
    unset($translations_metadata[$component]);
    $state
      ->set('lingotek.interface_translations_metadata', $translations_metadata);
  }
}