DeleteCacheflush.php in CacheFlush 8
File
modules/cacheflush_ui/src/Plugin/Action/DeleteCacheflush.php
View source
<?php
namespace Drupal\cacheflush_ui\Plugin\Action;
use Drupal\Core\Action\ActionBase;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\user\PrivateTempStoreFactory;
use Symfony\Component\DependencyInjection\ContainerInterface;
class DeleteCacheflush extends ActionBase implements ContainerFactoryPluginInterface {
protected $tempStore;
protected $currentUser;
public function __construct(array $configuration, $plugin_id, $plugin_definition, PrivateTempStoreFactory $temp_store_factory, AccountInterface $current_user) {
$this->currentUser = $current_user;
$this->tempStore = $temp_store_factory
->get('cacheflush_multiple_delete_confirm');
parent::__construct($configuration, $plugin_id, $plugin_definition);
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('user.private_tempstore'), $container
->get('current_user'));
}
public function executeMultiple(array $entities) {
$info = [];
foreach ($entities as $cacheflush) {
$langcode = $cacheflush
->language()
->getId();
$info[$cacheflush
->id()][$langcode] = $langcode;
}
$this->tempStore
->set($this->currentUser
->id(), $info);
}
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);
}
}