You are here

public function HostMultipleGreylistConfirm::__construct in http:BL 8

Constructs a new HostMultipleGreylistConfirm 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/HostMultipleGreylistConfirm.php, line 67

Class

HostMultipleGreylistConfirm
Provides a multiple host grey-listing (and un-banning) confirmation form.

Namespace

Drupal\httpbl\Form

Code

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;
}