public function RouteProvider::__construct

public RouteProvider::__construct(Connection $connection, StateInterface $state, CurrentPathStack $current_path, CacheBackendInterface $cache_backend, InboundPathProcessorInterface $path_processor, CacheTagsInvalidatorInterface $cache_tag_invalidator, $table = 'router')

Constructs a new PathMatcher.

Parameters

\Drupal\Core\Database\Connection $connection: A database connection object.

\Drupal\Core\State\StateInterface $state: The state.

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

\Drupal\Core\Cache\CacheBackendInterface $cache_backend: The cache backend.

\Drupal\Core\PathProcessor\InboundPathProcessorInterface $path_processor: The path processor.

\Drupal\Core\Cache\CacheTagsInvalidatorInterface $cache_tag_invalidator: The cache tag invalidator.

string $table: (Optional) The table in the database to use for matching. Defaults to 'router'

File

core/lib/Drupal/Core/Routing/RouteProvider.php, line 110

Class

RouteProvider
A Route Provider front-end for all Drupal-stored routes.

Namespace

Drupal\Core\Routing

Code

public function __construct(Connection $connection, StateInterface $state, CurrentPathStack $current_path, CacheBackendInterface $cache_backend, InboundPathProcessorInterface $path_processor, CacheTagsInvalidatorInterface $cache_tag_invalidator, $table = 'router') {
  $this->connection = $connection;
  $this->state = $state;
  $this->currentPath = $current_path;
  $this->cache = $cache_backend;
  $this->cacheTagInvalidator = $cache_tag_invalidator;
  $this->pathProcessor = $path_processor;
  $this->tableName = $table;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Routing!RouteProvider.php/function/RouteProvider::__construct/8.1.x