You are here

public function RequestTranslationLingotekAction::execute in Lingotek Translation 8.2

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

Executes the plugin.

Overrides ExecutableInterface::execute

File

src/Plugin/Action/RequestTranslationLingotekAction.php, line 25

Class

RequestTranslationLingotekAction
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
      ->addTarget($entity, $locale);
  } catch (LingotekPaymentRequiredException $exception) {
    $this
      ->messenger()
      ->addError(t('Community has been disabled. Please contact support@lingotek.com to re-enable your community.'));
  } catch (LingotekDocumentArchivedException $exception) {
    $this
      ->messenger()
      ->addError(t('Document @entity_type %title has been archived. Please upload again.', [
      '@entity_type' => $entity
        ->getEntityTypeId(),
      '%title' => $entity
        ->label(),
    ]));
  } catch (LingotekDocumentLockedException $exception) {
    $this
      ->messenger()
      ->addError(t('Document @entity_type %title has a new version. The document id has been updated for all future interactions. Please try again.', [
      '@entity_type' => $entity
        ->getEntityTypeId(),
      '%title' => $entity
        ->label(),
    ]));
  } catch (LingotekApiException $exception) {
    $this
      ->messenger()
      ->addError(t('The request for @entity_type %title translation failed. Please try again.', [
      '@entity_type' => $entity
        ->getEntityTypeId(),
      '@langcode' => $langcode,
      '%title' => $entity
        ->label(),
    ]));
  }
  return $result;
}