You are here

public function CurrentThemeCondition::getCacheContexts in Zircon Profile 8

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

Overrides ContextAwarePluginBase::getCacheContexts

File

core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php, line 129
Contains \Drupal\system\Plugin\Condition\CurrentThemeCondition.

Class

CurrentThemeCondition
Provides a 'Current Theme' condition.

Namespace

Drupal\system\Plugin\Condition

Code

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