You are here

class DeleteTranslationLingotekAction in Lingotek Translation 3.3.x

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

Delete Lingotek translation of a content entity for one language.

Plugin annotation


@Action(
  id = "entity:lingotek_delete_translation_action",
  action_label = @Translation("Delete @entity_label translation for @language"),
  category = "Lingotek",
  deriver = "Drupal\lingotek\Plugin\Action\Derivative\ContentEntityLingotekActionDeriver",
)

Hierarchy

Expanded class hierarchy of DeleteTranslationLingotekAction

1 file declares its use of DeleteTranslationLingotekAction
ContentEntityLingotekActionDeriver.php in src/Plugin/Action/Derivative/ContentEntityLingotekActionDeriver.php

File

src/Plugin/Action/DeleteTranslationLingotekAction.php, line 15

Namespace

Drupal\lingotek\Plugin\Action
View source
class DeleteTranslationLingotekAction extends LingotekContentEntityConfigurableActionBase {

  /**
   * {@inheritdoc}
   */
  public function executeMultiple(array $entities) {
    $entityInfo = [];
    $configuration = $this
      ->getConfiguration();
    $langcode = $configuration['language'];
    foreach ($entities as $entity) {
      $source_language = $entity
        ->getUntranslated()
        ->language();
      if ($source_language
        ->getId() !== $langcode && $entity
        ->hasTranslation($langcode)) {

        /** @var \Drupal\Core\Entity\ContentEntityInterface $entity */
        $entityInfo[$entity
          ->id()][$langcode] = $langcode;
      }
    }
    \Drupal::getContainer()
      ->get('tempstore.private')
      ->get('entity_delete_multiple_confirm')
      ->set(\Drupal::currentUser()
      ->id() . ':node', $entityInfo);
    if (empty($entityInfo)) {
      $this
        ->messenger()
        ->addWarning("No valid translations for deletion.");
    }
  }

  /**
   * {@inheritdoc}
   */
  public function execute($entity = NULL) {
    $this
      ->executeMultiple([
      $entity,
    ]);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigurableActionBase::calculateDependencies public function Calculates dependencies for the configured plugin. Overrides DependentPluginInterface::calculateDependencies 1
ConfigurableActionBase::getConfiguration public function Gets this plugin's configuration. Overrides ConfigurableInterface::getConfiguration
ConfigurableActionBase::setConfiguration public function Sets the configuration for this plugin instance. Overrides ConfigurableInterface::setConfiguration
ConfigurableActionBase::validateConfigurationForm public function Form validation handler. Overrides PluginFormInterface::validateConfigurationForm 2
DeleteTranslationLingotekAction::execute public function Executes the plugin. Overrides ExecutableInterface::execute
DeleteTranslationLingotekAction::executeMultiple public function Executes the plugin for an array of objects. Overrides ActionBase::executeMultiple
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
LingotekContentEntityConfigurableActionBase::$entityTypeManager protected property The entity type manager.
LingotekContentEntityConfigurableActionBase::$languageLocaleMapper protected property The language-locale mapper.
LingotekContentEntityConfigurableActionBase::$translationService protected property The Lingotek content translation service.
LingotekContentEntityConfigurableActionBase::access public function Checks object access. Overrides ActionInterface::access
LingotekContentEntityConfigurableActionBase::buildConfigurationForm public function Form constructor. Overrides PluginFormInterface::buildConfigurationForm
LingotekContentEntityConfigurableActionBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
LingotekContentEntityConfigurableActionBase::defaultConfiguration public function Gets default configuration for this plugin. Overrides ConfigurableActionBase::defaultConfiguration
LingotekContentEntityConfigurableActionBase::submitConfigurationForm public function Form submission handler. Overrides PluginFormInterface::submitConfigurationForm
LingotekContentEntityConfigurableActionBase::__construct public function Constructs a new UploadToLingotekAction action. Overrides ConfigurableActionBase::__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.