public function LingotekInterfaceTranslationController::upload in Lingotek Translation 3.3.x
Same name and namespace in other branches
- 4.0.x src/Controller/LingotekInterfaceTranslationController.php \Drupal\lingotek\Controller\LingotekInterfaceTranslationController::upload()
- 3.2.x src/Controller/LingotekInterfaceTranslationController.php \Drupal\lingotek\Controller\LingotekInterfaceTranslationController::upload()
- 3.4.x src/Controller/LingotekInterfaceTranslationController.php \Drupal\lingotek\Controller\LingotekInterfaceTranslationController::upload()
- 3.5.x src/Controller/LingotekInterfaceTranslationController.php \Drupal\lingotek\Controller\LingotekInterfaceTranslationController::upload()
- 3.6.x src/Controller/LingotekInterfaceTranslationController.php \Drupal\lingotek\Controller\LingotekInterfaceTranslationController::upload()
- 3.7.x src/Controller/LingotekInterfaceTranslationController.php \Drupal\lingotek\Controller\LingotekInterfaceTranslationController::upload()
- 3.8.x src/Controller/LingotekInterfaceTranslationController.php \Drupal\lingotek\Controller\LingotekInterfaceTranslationController::upload()
1 string reference to 'LingotekInterfaceTranslationController::upload'
File
- src/
Controller/ LingotekInterfaceTranslationController.php, line 67
Class
Namespace
Drupal\lingotek\ControllerCode
public function upload(Request $request) {
$component = $request->query
->get('component');
if ($component) {
// It is not a config entity, but a config object.
if ($this->lingotekInterfaceTranslation
->getDocumentId($component)) {
return $this
->update($component);
}
else {
try {
if ($this->lingotekInterfaceTranslation
->uploadDocument($component)) {
$this
->messenger()
->addStatus($this
->t('%label uploaded successfully', [
'%label' => $component,
]));
}
} catch (LingotekDocumentArchivedException $exception) {
$this
->messenger()
->addError($this
->t('Document %label has been archived. Please upload again.', [
'%label' => $component,
]));
} catch (LingotekDocumentLockedException $exception) {
$this
->messenger()
->addError($this
->t('Document %label has a new version. The document id has been updated for all future interactions. Please try again.', [
'%label' => $component,
]));
} catch (LingotekPaymentRequiredException $exception) {
$this
->messenger()
->addError($this
->t('Community has been disabled. Please contact support@lingotek.com to re-enable your community.'));
} catch (LingotekApiException $e) {
// Mark the document as failed.
$this
->messenger()
->addError($this
->t('The upload for %label failed. Please try again.', [
'%label' => $component,
]));
}
}
}
return new RedirectResponse($request
->getRequestUri());
}