You are here

public function CheckStatusAllTranslationsLingotekAction::execute in Lingotek Translation 3.0.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php \Drupal\lingotek\Plugin\Action\CheckStatusAllTranslationsLingotekAction::execute()
  2. 4.0.x src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php \Drupal\lingotek\Plugin\Action\CheckStatusAllTranslationsLingotekAction::execute()
  3. 3.1.x src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php \Drupal\lingotek\Plugin\Action\CheckStatusAllTranslationsLingotekAction::execute()
  4. 3.2.x src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php \Drupal\lingotek\Plugin\Action\CheckStatusAllTranslationsLingotekAction::execute()
  5. 3.3.x src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php \Drupal\lingotek\Plugin\Action\CheckStatusAllTranslationsLingotekAction::execute()
  6. 3.4.x src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php \Drupal\lingotek\Plugin\Action\CheckStatusAllTranslationsLingotekAction::execute()
  7. 3.5.x src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php \Drupal\lingotek\Plugin\Action\CheckStatusAllTranslationsLingotekAction::execute()
  8. 3.6.x src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php \Drupal\lingotek\Plugin\Action\CheckStatusAllTranslationsLingotekAction::execute()
  9. 3.7.x src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php \Drupal\lingotek\Plugin\Action\CheckStatusAllTranslationsLingotekAction::execute()
  10. 3.8.x src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php \Drupal\lingotek\Plugin\Action\CheckStatusAllTranslationsLingotekAction::execute()

Executes the plugin.

Overrides ExecutableInterface::execute

File

src/Plugin/Action/CheckStatusAllTranslationsLingotekAction.php, line 22

Class

CheckStatusAllTranslationsLingotekAction
Assigns ownership of a node to a user.

Namespace

Drupal\lingotek\Plugin\Action

Code

public function execute($entity = NULL) {
  $result = FALSE;
  try {

    /** @var \Drupal\node\NodeInterface $entity */
    $result = $this->translationService
      ->checkTargetStatuses($entity);
  } catch (LingotekApiException $exception) {
    $this
      ->messenger()
      ->addError(t('The request for @entity_type %title translation status failed. Please try again.', [
      '@entity_type' => $entity
        ->getEntityTypeId(),
      '%title' => $entity
        ->label(),
    ]));
  }
  return $result;
}