You are here

public function CancelTranslationLingotekAction::execute in Lingotek Translation 8.2

Same name and namespace in other branches
  1. 4.0.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction::execute()
  2. 3.0.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction::execute()
  3. 3.1.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction::execute()
  4. 3.2.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction::execute()
  5. 3.3.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction::execute()
  6. 3.4.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction::execute()
  7. 3.5.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction::execute()
  8. 3.6.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction::execute()
  9. 3.7.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction::execute()
  10. 3.8.x src/Plugin/Action/CancelTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\CancelTranslationLingotekAction::execute()

Executes the plugin.

Overrides ExecutableInterface::execute

File

src/Plugin/Action/CancelTranslationLingotekAction.php, line 22

Class

CancelTranslationLingotekAction
Request Lingotek translation of a content entity for one language.

Namespace

Drupal\lingotek\Plugin\Action

Code

public function execute($entity = NULL) {
  $result = 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;
}