/**
* {@inheritdoc}
*
* @see \Drupal\Core\Pager\PagerParametersInterface::findPage()
*/
public function getContext($pager_id = NULL
) { // The value of the 'page' query argument contains the information that
// controls *all* pagers.
if ($pager_id === NULL
) { return $this->pagerParams->
getPagerParameter();
} return $pager_id . '.' .
$this->pagerParams->
findPage($pager_id);
} /**
* {@inheritdoc}
*/
public function getCacheableMetadata($pager_id = NULL
) { return new CacheableMetadata();
}}