CancelLingotekAction.php in Lingotek Translation 4.0.x
File
src/Plugin/Action/CancelLingotekAction.php
View source
<?php
namespace Drupal\lingotek\Plugin\Action;
use Drupal\lingotek\Exception\LingotekApiException;
use Drupal\lingotek\Exception\LingotekDocumentNotFoundException;
class CancelLingotekAction extends LingotekContentEntityActionBase {
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 @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 @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;
}
try {
$result = $this->translationService
->cancelDocument($entity);
} catch (LingotekDocumentNotFoundException $exc) {
$this
->messenger()
->addWarning(t('Document @entity_type %title was not found, so nothing to cancel.', [
'@entity_type' => $entity
->getEntityTypeId(),
'%title' => $entity
->label(),
]));
} catch (LingotekApiException $exception) {
$this
->messenger()
->addError(t('The cancellation of @entity_type %title failed. Please try again.', [
'@entity_type' => $entity
->getEntityTypeId(),
'%title' => $entity
->label(),
]));
}
return $result;
}
}