function ContextAwarePluginTrait::getCacheContexts
14 calls to ContextAwarePluginTrait::getCacheContexts()
- CurrentThemeCondition::getCacheContexts in core/
modules/ system/ src/ Plugin/ Condition/ CurrentThemeCondition.php - CurrentThemeCondition::getCacheContexts in core/
modules/ system/ src/ Plugin/ Condition/ CurrentThemeCondition.php - HelpBlock::getCacheContexts in core/
modules/ help/ src/ Plugin/ Block/ HelpBlock.php - HelpBlock::getCacheContexts in core/
modules/ help/ src/ Plugin/ Block/ HelpBlock.php - RequestPath::getCacheContexts in core/
modules/ system/ src/ Plugin/ Condition/ RequestPath.php
7 methods override ContextAwarePluginTrait::getCacheContexts()
- CurrentThemeCondition::getCacheContexts in core/
modules/ system/ src/ Plugin/ Condition/ CurrentThemeCondition.php - HelpBlock::getCacheContexts in core/
modules/ help/ src/ Plugin/ Block/ HelpBlock.php - RequestPath::getCacheContexts in core/
modules/ system/ src/ Plugin/ Condition/ RequestPath.php - ResponseStatus::getCacheContexts in core/
modules/ system/ src/ Plugin/ Condition/ ResponseStatus.php - SystemMenuBlock::getCacheContexts in core/
modules/ system/ src/ Plugin/ Block/ SystemMenuBlock.php
File
-
core/
lib/ Drupal/ Core/ Plugin/ ContextAwarePluginTrait.php, line 171
Class
- ContextAwarePluginTrait
- Provides a trait to add context-aware functionality to plugins.
Namespace
Drupal\Core\PluginCode
public function getCacheContexts() {
$cache_contexts = [];
// Applied contexts can affect the cache contexts when this plugin is
// involved in caching, collect and return them.
foreach ($this->getContexts() as $context) {
/** @var \Drupal\Core\Cache\CacheableDependencyInterface $context */
if ($context instanceof CacheableDependencyInterface) {
$cache_contexts = Cache::mergeContexts($cache_contexts, $context->getCacheContexts());
}
}
return $cache_contexts;
}