You are here

class CancelLingotekAction in Lingotek Translation 3.4.x

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

Assigns ownership of a node to a user.

Plugin annotation


@Action(
  id = "entity:lingotek_cancel_action",
  action_label = @Translation("Cancel @entity_label from Lingotek"),
  category = "Lingotek",
  deriver = "Drupal\lingotek\Plugin\Action\Derivative\ContentEntityLingotekActionDeriver",
)

Hierarchy

Expanded class hierarchy of CancelLingotekAction

File

src/Plugin/Action/CancelLingotekAction.php, line 17

Namespace

Drupal\lingotek\Plugin\Action
View source
class CancelLingotekAction extends LingotekContentEntityActionBase {

  /**
   * {@inheritdoc}
   */
  public function execute($entity = NULL) {
    $result = FALSE;
    $entityTypeBundleInfo = \Drupal::service('entity_type.bundle.info');
    $bundleInfos = $entityTypeBundleInfo
      ->getBundleInfo($entity
      ->getEntityTypeId());
    if (!$entity
      ->getEntityType()
      ->isTranslatable() || !$bundleInfos[$entity
      ->bundle()]['translatable']) {
      $this
        ->messenger()
        ->addWarning(t('Cannot cancel @type %label. That @bundle_label is not enabled for translation.', [
        '@type' => $bundleInfos[$entity
          ->bundle()]['label'],
        '%label' => $entity
          ->label(),
        '@bundle_label' => $entity
          ->getEntityType()
          ->getBundleLabel(),
      ]));
      return FALSE;
    }

    /** @var \Drupal\lingotek\LingotekConfigurationServiceInterface $lingotek_configuration */
    $lingotek_configuration = \Drupal::service('lingotek.configuration');
    if (!$lingotek_configuration
      ->isEnabled($entity
      ->getEntityTypeId(), $entity
      ->bundle())) {
      $this
        ->messenger()
        ->addWarning(t('Cannot cancel @type %label. That @bundle_label is not enabled for Lingotek translation.', [
        '@type' => $bundleInfos[$entity
          ->bundle()]['label'],
        '%label' => $entity
          ->label(),
        '@bundle_label' => $entity
          ->getEntityType()
          ->getBundleLabel(),
      ]));
      return FALSE;
    }
    try {

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

}

Members

Namesort descending Modifiers Type Description Overrides
ActionBase::executeMultiple public function Executes the plugin for an array of objects. Overrides ActionInterface::executeMultiple 3
CancelLingotekAction::execute public function Executes the plugin. Overrides ExecutableInterface::execute
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
EntityActionBase::$entityTypeManager protected property The entity type manager.
EntityActionBase::calculateDependencies public function Calculates dependencies for the configured plugin. Overrides DependentPluginInterface::calculateDependencies
LingotekContentEntityActionBase::$translationService protected property The Lingotek content translation service.
LingotekContentEntityActionBase::access public function Checks object access. Overrides ActionInterface::access
LingotekContentEntityActionBase::create public static function Creates an instance of the plugin. Overrides EntityActionBase::create
LingotekContentEntityActionBase::__construct public function Constructs a new UploadToLingotekAction action. Overrides EntityActionBase::__construct
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 2
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.