public function HostMultipleUnbanConfirm::__construct in http:BL 8
Constructs a new HostMultipleUnbanConfirm form object.
Parameters
\Drupal\user\PrivateTempStoreFactory $temp_store_factory: The tempstore factory.
\Drupal\Core\Entity\EntityTypeManagerInterface $manager: The entity manager.
\Drupal\ban\BanIpManagerInterface $banManager: The Ban manager.
\Drupal\httpbl\Logger\HttpblLogTrapperInterface $logTrapper: A logger arbitration instance.
File
- src/
Form/ HostMultipleUnbanConfirm.php, line 68
Class
- HostMultipleUnbanConfirm
- Provides a multiple host un-ban blacklisted confirmation form.
Namespace
Drupal\httpbl\FormCode
public function __construct(PrivateTempStoreFactory $temp_store_factory, EntityTypeManagerInterface $manager, BanIpManagerInterface $banManager, HttpblLogTrapperInterface $logTrapper) {
$this->tempStoreFactory = $temp_store_factory;
//Get the storage info from the EntityTypeManager.
$this->storage = $manager
->getStorage('host');
$this->banManager = $banManager;
$this->logTrapper = $logTrapper;
}