HostMultipleDelete.php in http:BL 8
File
src/Plugin/Action/HostMultipleDelete.php
View source
<?php
namespace Drupal\httpbl\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 HostMultipleDelete 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('host_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 $host) {
$host_ip = $host
->getHostIp();
$info[$host
->id()][$host_ip] = $host_ip;
}
$this->tempStore
->set($this->currentUser
->id(), $info);
}
public function execute($object = NULL) {
$this
->executeMultiple(array(
$object,
));
}
public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
return $object
->access('delete', $account, $return_as_object);
}
}