You are here

public function RequestPath::getCacheContexts in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Plugin/Condition/RequestPath.php \Drupal\system\Plugin\Condition\RequestPath::getCacheContexts()

Overrides ContextAwarePluginBase::getCacheContexts

File

core/modules/system/src/Plugin/Condition/RequestPath.php, line 164
Contains \Drupal\system\Plugin\Condition\RequestPath.

Class

RequestPath
Provides a 'Request Path' condition.

Namespace

Drupal\system\Plugin\Condition

Code

public function getCacheContexts() {
  $contexts = parent::getCacheContexts();
  $contexts[] = 'url.path';
  return $contexts;
}