You are here

public function LingotekConfigManagementForm::requestTranslations in Lingotek Translation 3.4.x

Same name and namespace in other branches
  1. 8 src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()
  2. 8.2 src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()
  3. 4.0.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()
  4. 3.0.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()
  5. 3.1.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()
  6. 3.2.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()
  7. 3.3.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()
  8. 3.5.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()
  9. 3.6.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()
  10. 3.7.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()
  11. 3.8.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::requestTranslations()

Request all translations for a given content.

Parameters

\Drupal\config_translation\ConfigMapperInterface $mapper: The mapper.

File

src/Form/LingotekConfigManagementForm.php, line 914

Class

LingotekConfigManagementForm
Form for bulk management of content.

Namespace

Drupal\lingotek\Form

Code

public function requestTranslations(ConfigMapperInterface $mapper, $language, $job_id, &$context) {
  $result = NULL;
  $context['message'] = $this
    ->t('Requesting translations for %label.', [
    '%label' => $mapper
      ->getTitle(),
  ]);
  $entity = $mapper instanceof ConfigEntityMapper ? $mapper
    ->getEntity() : NULL;
  $profile = $mapper instanceof ConfigEntityMapper ? $this->lingotekConfiguration
    ->getConfigEntityProfile($entity, FALSE) : $this->lingotekConfiguration
    ->getConfigProfile($mapper
    ->getPluginId(), FALSE);

  // If there is no entity, it's a config object and we don't abort based on
  // the profile.
  if ($entity === NULL || $profile !== NULL) {
    if ($mapper instanceof ConfigEntityMapper) {
      try {
        $result = $this->translationService
          ->requestTranslations($entity);
      } 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 $e) {
        $this
          ->messenger()
          ->addError($this
          ->t('Document @entity_type %title translations request failed. Please try again.', [
          '@entity_type' => $entity
            ->getEntityTypeId(),
          '%title' => $entity
            ->label(),
        ]));
      }
    }
    else {
      try {
        $result = $this->translationService
          ->requestConfigTranslations($mapper
          ->getPluginId());
      } 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 %label has been archived. Please upload again.', [
          '%label' => $mapper
            ->getTitle(),
        ]));
      } catch (LingotekDocumentLockedException $exception) {
        $this
          ->messenger()
          ->addError(t('Document %label has a new version. The document id has been updated for all future interactions. Please try again.', [
          '%label' => $mapper
            ->getTitle(),
        ]));
      } catch (LingotekApiException $e) {
        $this
          ->messenger()
          ->addError($this
          ->t('%label translations request failed. Please try again.', [
          '%label' => $mapper
            ->getTitle(),
        ]));
      }
    }
  }
  else {
    $this
      ->messenger()
      ->addWarning($this
      ->t('%label has no profile assigned so it was not processed.', [
      '%label' => $mapper
        ->getTitle(),
    ]));
  }
  return $result;
}