public function CacheContextsManager::__construct

public CacheContextsManager::__construct(ContainerInterface $container, array $contexts)

Constructs a CacheContextsManager object.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The current service container.

string[] $contexts: An array of the available cache context IDs.

File

core/lib/Drupal/Core/Cache/Context/CacheContextsManager.php, line 47

Class

CacheContextsManager
Converts cache context tokens into cache keys.

Namespace

Drupal\Core\Cache\Context

Code

public function __construct(ContainerInterface $container, array $contexts) {
  $this->container = $container;
  $this->contexts = $contexts;
}

© 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!Cache!Context!CacheContextsManager.php/function/CacheContextsManager::__construct/8.1.x