CheckTranslationStatusLingotekAction.php in Lingotek Translation 8.2
Same filename and directory in other branches
- 4.0.x src/Plugin/Action/CheckTranslationStatusLingotekAction.php
- 3.0.x src/Plugin/Action/CheckTranslationStatusLingotekAction.php
- 3.1.x src/Plugin/Action/CheckTranslationStatusLingotekAction.php
- 3.2.x src/Plugin/Action/CheckTranslationStatusLingotekAction.php
- 3.3.x src/Plugin/Action/CheckTranslationStatusLingotekAction.php
- 3.4.x src/Plugin/Action/CheckTranslationStatusLingotekAction.php
- 3.5.x src/Plugin/Action/CheckTranslationStatusLingotekAction.php
- 3.6.x src/Plugin/Action/CheckTranslationStatusLingotekAction.php
- 3.7.x src/Plugin/Action/CheckTranslationStatusLingotekAction.php
- 3.8.x src/Plugin/Action/CheckTranslationStatusLingotekAction.php
Namespace
Drupal\lingotek\Plugin\ActionFile
src/Plugin/Action/CheckTranslationStatusLingotekAction.phpView source
<?php
namespace Drupal\lingotek\Plugin\Action;
use Drupal\lingotek\Exception\LingotekApiException;
/**
* Check Lingotek translation status of a content entity for one language.
*
* @Action(
* id = "entity:lingotek_check_translation_action",
* action_label = @Translation("Check @entity_label translation status to Lingotek for @language"),
* category = "Lingotek",
* deriver = "Drupal\lingotek\Plugin\Action\Derivative\ContentEntityLingotekActionDeriver",
* )
*/
class CheckTranslationStatusLingotekAction extends LingotekContentEntityConfigurableActionBase {
/**
* {@inheritdoc}
*/
public function execute($entity = NULL) {
$result = FALSE;
$configuration = $this
->getConfiguration();
$langcode = $configuration['language'];
try {
$result = $this->translationService
->checkTargetStatus($entity, $langcode);
} catch (LingotekApiException $exception) {
$this
->messenger()
->addError(t('The request for @entity_type %title translation status failed. Please try again.', [
'@entity_type' => $entity
->getEntityTypeId(),
'@langcode' => $langcode,
'%title' => $entity
->label(),
]));
}
return $result;
}
}
Classes
Name | Description |
---|---|
CheckTranslationStatusLingotekAction | Check Lingotek translation status of a content entity for one language. |