class CancelTranslationLingotekAction in Lingotek Translation 3.4.x
Same name and namespace in other branches
- 8.2 src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
- 4.0.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
- 3.0.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
- 3.1.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
- 3.2.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
- 3.3.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
- 3.5.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
- 3.6.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
- 3.7.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
- 3.8.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
Request Lingotek translation of a content entity for one language.
Plugin annotation
@Action(
id = "entity:lingotek_cancel_translation_action",
action_label = @Translation("Cancel @entity_label translation in Lingotek for @language"),
category = "Lingotek",
deriver = "Drupal\lingotek\Plugin\Action\Derivative\ContentEntityLingotekActionDeriver",
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\Core\Action\ActionBase implements ActionInterface
- class \Drupal\Core\Action\ConfigurableActionBase implements ConfigurableInterface, DependentPluginInterface, PluginFormInterface
- class \Drupal\lingotek\Plugin\Action\LingotekContentEntityConfigurableActionBase implements ContainerFactoryPluginInterface
- class \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction
- class \Drupal\lingotek\Plugin\Action\LingotekContentEntityConfigurableActionBase implements ContainerFactoryPluginInterface
- class \Drupal\Core\Action\ConfigurableActionBase implements ConfigurableInterface, DependentPluginInterface, PluginFormInterface
- class \Drupal\Core\Action\ActionBase implements ActionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of CancelTranslationLingotekAction
File
- src/
Plugin/ Action/ CancelTranslationLingotekAction.php, line 17
Namespace
Drupal\lingotek\Plugin\ActionView source
class CancelTranslationLingotekAction extends LingotekContentEntityConfigurableActionBase {
/**
* {@inheritdoc}
*/
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;
}
/** @var \Drupal\lingotek\LingotekConfigurationServiceInterface $lingotek_configuration */
$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;
}
}