You are here

public static function RequestPath::create in Drupal 10

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

File

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

Class

RequestPath
Provides a 'Request Path' condition.

Namespace

Drupal\system\Plugin\Condition

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($container
    ->get('path_alias.manager'), $container
    ->get('path.matcher'), $container
    ->get('request_stack'), $container
    ->get('path.current'), $configuration, $plugin_id, $plugin_definition);
}