You are here

public function LanguageCookieConditionHardcodedBlacklistedPaths::__construct in Language Cookie 8

Constructs a RequestPath condition plugin.

Parameters

\Drupal\path_alias\AliasManagerInterface $alias_manager: An alias manager to find the alias for the current system path.

\Drupal\Core\Path\PathMatcherInterface $path_matcher: The path matcher service.

\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack.

\Drupal\Core\Path\CurrentPathStack $current_path: The current path.

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The configuration factory.

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

string $plugin_id: The plugin_id for the plugin instance.

array $plugin_definition: The plugin implementation definition.

Overrides ConditionPluginBase::__construct

File

src/Plugin/LanguageCookieCondition/LanguageCookieConditionHardcodedBlacklistedPaths.php, line 81

Class

LanguageCookieConditionHardcodedBlacklistedPaths
Class for the Hardcoded blacklisted paths condition plugin.

Namespace

Drupal\language_cookie\Plugin\LanguageCookieCondition

Code

public function __construct(AliasManagerInterface $alias_manager, PathMatcherInterface $path_matcher, RequestStack $request_stack, CurrentPathStack $current_path, ConfigFactoryInterface $config_factory, array $configuration, $plugin_id, array $plugin_definition) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->aliasManager = $alias_manager;
  $this->pathMatcher = $path_matcher;
  $this->requestStack = $request_stack;
  $this->currentPath = $current_path;
  $this->configFactory = $config_factory;
}