You are here

class DisassociateFromLingotekAction in Lingotek Translation 3.4.x

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

Assigns ownership of a node to a user.

Plugin annotation


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

Hierarchy

Expanded class hierarchy of DisassociateFromLingotekAction

Deprecated

in lingotek:3.1.0 and is removed from lingotek:4.0.0.

See also

\Drupal\lingotek\Plugin\Action\CancelLingotekAction

File

src/Plugin/Action/DisassociateFromLingotekAction.php, line 19

Namespace

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

  /**
   * {@inheritdoc}
   */
  public function execute($entity = NULL) {
    $result = 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
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
DisassociateFromLingotekAction::execute public function Executes the plugin. Overrides ExecutableInterface::execute
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.