DeleteAction.php in Drupal 10
File
core/lib/Drupal/Core/Action/Plugin/Action/DeleteAction.php
View source
<?php
namespace Drupal\Core\Action\Plugin\Action;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\TempStore\PrivateTempStoreFactory;
use Symfony\Component\DependencyInjection\ContainerInterface;
class DeleteAction extends EntityActionBase {
protected $tempStore;
protected $currentUser;
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, PrivateTempStoreFactory $temp_store_factory, AccountInterface $current_user) {
$this->currentUser = $current_user;
$this->tempStore = $temp_store_factory
->get('entity_delete_multiple_confirm');
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager);
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'), $container
->get('tempstore.private'), $container
->get('current_user'));
}
public function executeMultiple(array $entities) {
$selection = [];
foreach ($entities as $entity) {
$langcode = $entity
->language()
->getId();
$selection[$entity
->id()][$langcode] = $langcode;
}
$this->tempStore
->set($this->currentUser
->id() . ':' . $this
->getPluginDefinition()['type'], $selection);
}
public function execute($object = NULL) {
$this
->executeMultiple([
$object,
]);
}
public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
return $object
->access('delete', $account, $return_as_object);
}
}