protected function CacheContextsManager::getService

protected CacheContextsManager::getService($context_id)

Retrieves a cache context service from the container.

Parameters

string $context_id: The context ID, which together with the service ID prefix allows the corresponding cache context service to be retrieved.

Return value

\Drupal\Core\Cache\Context\CacheContextInterface The requested cache context service.

File

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

Class

CacheContextsManager
Converts cache context tokens into cache keys.

Namespace

Drupal\Core\Cache\Context

Code

protected function getService($context_id) {
  return $this->container->get('cache_context.' . $context_id);
}

© 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::getService/8.1.x