Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 11 |
QueryArgsCacheContext | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
20 | |
0.00% |
0 / 11 |
getLabel | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
getContext | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 7 |
|||
getCacheableMetadata | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Cache\Context\QueryArgsCacheContext. | |
*/ | |
namespace Drupal\Core\Cache\Context; | |
use Drupal\Core\Cache\CacheableMetadata; | |
/** | |
* Defines the QueryArgsCacheContext service, for "per query args" caching. | |
* | |
* Cache context ID: 'url.query_args' (to vary by all query arguments). | |
* Calculated cache context ID: 'url.query_args:%key', e.g.'url.query_args:foo' | |
* (to vary by the 'foo' query argument). | |
*/ | |
class QueryArgsCacheContext extends RequestStackCacheContextBase implements CalculatedCacheContextInterface { | |
/** | |
* {@inheritdoc} | |
*/ | |
public static function getLabel() { | |
return t('Query arguments'); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function getContext($query_arg = NULL) { | |
if ($query_arg === NULL) { | |
return $this->requestStack->getCurrentRequest()->getQueryString(); | |
} | |
else { | |
return $this->requestStack->getCurrentRequest()->query->get($query_arg); | |
} | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function getCacheableMetadata($query_arg = NULL) { | |
return new CacheableMetadata(); | |
} | |
} |