class DownloadTranslationLingotekAction in Lingotek Translation 3.0.x
Same name and namespace in other branches
- 8.2 src/Plugin/Action/DownloadTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
- 4.0.x src/Plugin/Action/DownloadTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
- 3.1.x src/Plugin/Action/DownloadTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
- 3.2.x src/Plugin/Action/DownloadTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
- 3.3.x src/Plugin/Action/DownloadTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
- 3.4.x src/Plugin/Action/DownloadTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
- 3.5.x src/Plugin/Action/DownloadTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
- 3.6.x src/Plugin/Action/DownloadTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
- 3.7.x src/Plugin/Action/DownloadTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
- 3.8.x src/Plugin/Action/DownloadTranslationLingotekAction.php \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
Download Lingotek translation of a content entity for one language.
Plugin annotation
@Action(
id = "entity:lingotek_download_translation_action",
action_label = @Translation("Download @entity_label translation to Lingotek for @language"),
category = "Lingotek",
deriver = "Drupal\lingotek\Plugin\Action\Derivative\ContentEntityLingotekActionDeriver",
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\Core\Action\ActionBase implements ActionInterface
- class \Drupal\Core\Action\ConfigurableActionBase implements ConfigurableInterface, DependentPluginInterface, PluginFormInterface
- class \Drupal\lingotek\Plugin\Action\LingotekContentEntityConfigurableActionBase implements ContainerFactoryPluginInterface
- class \Drupal\lingotek\Plugin\Action\DownloadTranslationLingotekAction
- class \Drupal\lingotek\Plugin\Action\LingotekContentEntityConfigurableActionBase implements ContainerFactoryPluginInterface
- class \Drupal\Core\Action\ConfigurableActionBase implements ConfigurableInterface, DependentPluginInterface, PluginFormInterface
- class \Drupal\Core\Action\ActionBase implements ActionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of DownloadTranslationLingotekAction
File
- src/
Plugin/ Action/ DownloadTranslationLingotekAction.php, line 17
Namespace
Drupal\lingotek\Plugin\ActionView source
class DownloadTranslationLingotekAction extends LingotekContentEntityConfigurableActionBase {
/**
* {@inheritdoc}
*/
public function execute($entity = NULL) {
$result = FALSE;
$configuration = $this
->getConfiguration();
$langcode = $configuration['language'];
try {
$locale = $this->languageLocaleMapper
->getLocaleForLangcode($langcode);
$result = $this->translationService
->downloadDocument($entity, $locale);
} catch (LingotekApiException $exception) {
$this
->messenger()
->addError(t('The download for @entity_type %title translation failed. Please try again.', [
'@entity_type' => $entity
->getEntityTypeId(),
'@langcode' => $langcode,
'%title' => $entity
->label(),
]));
}
return $result;
}
}