You are here

public function ClientIp::__construct in User restrictions 8

Constructs a \Drupal\Component\Plugin\PluginBase object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides UserRestrictionTypeBase::__construct

File

src/Plugin/UserRestrictionType/ClientIp.php, line 31

Class

ClientIp
Defines a restriction type by client IP.

Namespace

Drupal\user_restrictions\Plugin\UserRestrictionType

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_manager, RequestStack $request_stack, LoggerInterface $logger) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_manager, $logger);
  $this->requestStack = $request_stack;
}