public function UploadToLingotekAction::execute in Lingotek Translation 8.2
Same name and namespace in other branches
- 4.0.x src/Plugin/Action/UploadToLingotekAction.php \Drupal\lingotek\Plugin\Action\UploadToLingotekAction::execute()
- 3.0.x src/Plugin/Action/UploadToLingotekAction.php \Drupal\lingotek\Plugin\Action\UploadToLingotekAction::execute()
- 3.1.x src/Plugin/Action/UploadToLingotekAction.php \Drupal\lingotek\Plugin\Action\UploadToLingotekAction::execute()
- 3.2.x src/Plugin/Action/UploadToLingotekAction.php \Drupal\lingotek\Plugin\Action\UploadToLingotekAction::execute()
- 3.3.x src/Plugin/Action/UploadToLingotekAction.php \Drupal\lingotek\Plugin\Action\UploadToLingotekAction::execute()
- 3.4.x src/Plugin/Action/UploadToLingotekAction.php \Drupal\lingotek\Plugin\Action\UploadToLingotekAction::execute()
- 3.5.x src/Plugin/Action/UploadToLingotekAction.php \Drupal\lingotek\Plugin\Action\UploadToLingotekAction::execute()
- 3.6.x src/Plugin/Action/UploadToLingotekAction.php \Drupal\lingotek\Plugin\Action\UploadToLingotekAction::execute()
- 3.7.x src/Plugin/Action/UploadToLingotekAction.php \Drupal\lingotek\Plugin\Action\UploadToLingotekAction::execute()
- 3.8.x src/Plugin/Action/UploadToLingotekAction.php \Drupal\lingotek\Plugin\Action\UploadToLingotekAction::execute()
Executes the plugin.
Overrides ExecutableInterface::execute
File
- src/
Plugin/ Action/ UploadToLingotekAction.php, line 25
Class
- UploadToLingotekAction
- Assigns ownership of a node to a user.
Namespace
Drupal\lingotek\Plugin\ActionCode
public function execute($entity = NULL) {
$result = FALSE;
$alreadyUploaded = $this->translationService
->getDocumentId($entity);
try {
/** @var \Drupal\node\NodeInterface $entity */
$result = $this->translationService
->uploadDocument($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 $exception) {
if ($alreadyUploaded) {
$this
->messenger()
->addError(t('The update for @entity_type %title failed. Please try again.', [
'@entity_type' => $entity
->getEntityTypeId(),
'%title' => $entity
->label(),
]));
}
else {
$this
->messenger()
->addError(t('The upload for @entity_type %title failed. Please try again.', [
'@entity_type' => $entity
->getEntityTypeId(),
'%title' => $entity
->label(),
]));
}
}
return $result;
}