You are here

public function RequestPath::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/src/Plugin/Condition/RequestPath.php \Drupal\system\Plugin\Condition\RequestPath::__construct()

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.

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

core/modules/system/src/Plugin/Condition/RequestPath.php, line 70

Class

RequestPath
Provides a 'Request Path' condition.

Namespace

Drupal\system\Plugin\Condition

Code

public function __construct(AliasManagerInterface $alias_manager, PathMatcherInterface $path_matcher, RequestStack $request_stack, CurrentPathStack $current_path, 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;
}