You are here

class DeleteAllTranslationsAction in Lingotek Translation 3.7.x

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

Assigns ownership of a node to a user.

Plugin annotation


@Action(
  id = "entity:lingotek_delete_translations_action",
  action_label = @Translation("Delete all @entity_label translations"),
  category = "Lingotek",
  deriver = "Drupal\lingotek\Plugin\Action\Derivative\ContentEntityLingotekActionDeriver",
)

Hierarchy

Expanded class hierarchy of DeleteAllTranslationsAction

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

File

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

Namespace

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

  /**
   * {@inheritdoc}
   */
  public function executeMultiple(array $entities) {
    $entityInfo = [];
    $languages = \Drupal::languageManager()
      ->getLanguages();
    foreach ($entities as $entity) {
      $source_language = $entity
        ->getUntranslated()
        ->language();
      foreach ($languages as $langcode => $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
DeleteAllTranslationsAction::execute public function Executes the plugin. Overrides ExecutableInterface::execute
DeleteAllTranslationsAction::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
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.