You are here

public function PagersCacheContext::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Cache/Context/PagersCacheContext.php \Drupal\Core\Cache\Context\PagersCacheContext::__construct()

Constructs a new PagersCacheContext object.

Parameters

\Drupal\Core\Pager\PagerParametersInterface $pager_params: The pager parameters.

File

core/lib/Drupal/Core/Cache/Context/PagersCacheContext.php, line 30

Class

PagersCacheContext
Defines a cache context for "per page in a pager" caching.

Namespace

Drupal\Core\Cache\Context

Code

public function __construct(PagerParametersInterface $pager_params) {
  $this->pagerParams = $pager_params;
}