public function DownloadAllTranslationsFromLingotekAction::execute in Lingotek Translation 3.0.x
Same name and namespace in other branches
- 8.2 src/Plugin/Action/DownloadAllTranslationsFromLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadAllTranslationsFromLingotekAction::execute()
- 4.0.x src/Plugin/Action/DownloadAllTranslationsFromLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadAllTranslationsFromLingotekAction::execute()
- 3.1.x src/Plugin/Action/DownloadAllTranslationsFromLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadAllTranslationsFromLingotekAction::execute()
- 3.2.x src/Plugin/Action/DownloadAllTranslationsFromLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadAllTranslationsFromLingotekAction::execute()
- 3.3.x src/Plugin/Action/DownloadAllTranslationsFromLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadAllTranslationsFromLingotekAction::execute()
- 3.4.x src/Plugin/Action/DownloadAllTranslationsFromLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadAllTranslationsFromLingotekAction::execute()
- 3.5.x src/Plugin/Action/DownloadAllTranslationsFromLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadAllTranslationsFromLingotekAction::execute()
- 3.6.x src/Plugin/Action/DownloadAllTranslationsFromLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadAllTranslationsFromLingotekAction::execute()
- 3.7.x src/Plugin/Action/DownloadAllTranslationsFromLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadAllTranslationsFromLingotekAction::execute()
- 3.8.x src/Plugin/Action/DownloadAllTranslationsFromLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadAllTranslationsFromLingotekAction::execute()
Executes the plugin.
Overrides ExecutableInterface::execute
File
- src/
Plugin/ Action/ DownloadAllTranslationsFromLingotekAction.php, line 23
Class
- DownloadAllTranslationsFromLingotekAction
- Assigns ownership of a node to a user.
Namespace
Drupal\lingotek\Plugin\ActionCode
public function execute($entity = NULL) {
$result = FALSE;
try {
/** @var \Drupal\node\NodeInterface $entity */
$result = $this->translationService
->downloadDocuments($entity);
} catch (LingotekApiException $exception) {
$this
->messenger()
->addError(t('The download for @entity_type %title translation failed. Please try again.', [
'@entity_type' => $entity
->getEntityTypeId(),
'%title' => $entity
->label(),
]));
} catch (LingotekContentEntityStorageException $storage_exception) {
$this
->messenger()
->addError(t('The download for @entity_type %title failed because of the length of one field translation value: %table.', [
'@entity_type' => $entity
->getEntityTypeId(),
'%title' => $entity
->label(),
'%table' => $storage_exception
->getTable(),
]));
}
return $result;
}