public function CurrentThemeCondition::getCacheContexts in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::getCacheContexts()
Overrides ContextAwarePluginTrait::getCacheContexts
File
- core/
modules/ system/ src/ Plugin/ Condition/ CurrentThemeCondition.php, line 124
Class
- CurrentThemeCondition
- Provides a 'Current Theme' condition.
Namespace
Drupal\system\Plugin\ConditionCode
public function getCacheContexts() {
$contexts = parent::getCacheContexts();
$contexts[] = 'theme';
return $contexts;
}