public function LingotekInterfaceTranslationService::deleteMetadata in Lingotek Translation 3.2.x
Same name and namespace in other branches
- 4.0.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::deleteMetadata()
- 3.3.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::deleteMetadata()
- 3.4.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::deleteMetadata()
- 3.5.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::deleteMetadata()
- 3.6.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::deleteMetadata()
- 3.7.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::deleteMetadata()
- 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\lingotekCode
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);
}
}