CancelTranslationLingotekAction.php in Lingotek Translation 3.6.x
File
src/Plugin/Action/CancelTranslationLingotekAction.php
View source
<?php
namespace Drupal\lingotek\Plugin\Action;
use Drupal\lingotek\Exception\LingotekApiException;
class CancelTranslationLingotekAction extends LingotekContentEntityConfigurableActionBase {
public function execute($entity = NULL) {
$result = FALSE;
$entityTypeBundleInfo = \Drupal::service('entity_type.bundle.info');
$bundleInfos = $entityTypeBundleInfo
->getBundleInfo($entity
->getEntityTypeId());
if (!$entity
->getEntityType()
->isTranslatable() || !$bundleInfos[$entity
->bundle()]['translatable']) {
$this
->messenger()
->addWarning(t('Cannot cancel translation for @type %label. That @bundle_label is not enabled for translation.', [
'@type' => $bundleInfos[$entity
->bundle()]['label'],
'%label' => $entity
->label(),
'@bundle_label' => $entity
->getEntityType()
->getBundleLabel(),
]));
return FALSE;
}
$lingotek_configuration = \Drupal::service('lingotek.configuration');
if (!$lingotek_configuration
->isEnabled($entity
->getEntityTypeId(), $entity
->bundle())) {
$this
->messenger()
->addWarning(t('Cannot cancel translation for @type %label. That @bundle_label is not enabled for Lingotek translation.', [
'@type' => $bundleInfos[$entity
->bundle()]['label'],
'%label' => $entity
->label(),
'@bundle_label' => $entity
->getEntityType()
->getBundleLabel(),
]));
return FALSE;
}
$configuration = $this
->getConfiguration();
$langcode = $configuration['language'];
try {
$locale = $this->languageLocaleMapper
->getLocaleForLangcode($langcode);
$result = $this->translationService
->cancelDocumentTarget($entity, $locale);
} catch (LingotekApiException $exception) {
$this
->messenger()
->addError(t('The cancellation of @entity_type %title translation to @language failed. Please try again.', [
'@entity_type' => $entity
->getEntityTypeId(),
'%title' => $entity
->label(),
'@language' => $langcode,
]));
}
return $result;
}
}