function DisplayPluginBase::applyDisplayCacheabilityMetadata

Same name and namespace in other branches
  1. 8.9.x core/modules/views/src/Plugin/views/display/DisplayPluginBase.php \Drupal\views\Plugin\views\display\DisplayPluginBase::applyDisplayCacheabilityMetadata()
  2. 10 core/modules/views/src/Plugin/views/display/DisplayPluginBase.php \Drupal\views\Plugin\views\display\DisplayPluginBase::applyDisplayCacheabilityMetadata()
  3. 11.x core/modules/views/src/Plugin/views/display/DisplayPluginBase.php \Drupal\views\Plugin\views\display\DisplayPluginBase::applyDisplayCacheabilityMetadata()

Applies the cacheability of the current display to the given render array.

Parameters

array $element: The render array with updated cacheability metadata.

4 calls to DisplayPluginBase::applyDisplayCacheabilityMetadata()
DisplayPluginBase::buildRenderable in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Builds a renderable array of the view.
DisplayPluginBase::render in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Renders this display.
Feed::render in core/modules/views/src/Plugin/views/display/Feed.php
Renders this display.
RestExport::render in core/modules/rest/src/Plugin/views/display/RestExport.php
Renders this display.

File

core/modules/views/src/Plugin/views/display/DisplayPluginBase.php, line 2202

Class

DisplayPluginBase
Base class for views display plugins.

Namespace

Drupal\views\Plugin\views\display

Code

protected function applyDisplayCacheabilityMetadata(array &$element) {
    
    /** @var \Drupal\views\Plugin\views\cache\CachePluginBase $cache */
    $cache = $this->getPlugin('cache');
    (new CacheableMetadata())->setCacheTags(Cache::mergeTags($this->view
        ->getCacheTags(), $this->display['cache_metadata']['tags'] ?? []))
        ->setCacheContexts($this->display['cache_metadata']['contexts'] ?? [])
        ->setCacheMaxAge(Cache::mergeMaxAges($cache->getCacheMaxAge(), $this->display['cache_metadata']['max-age'] ?? Cache::PERMANENT))
        ->merge(CacheableMetadata::createFromRenderArray($element))
        ->applyTo($element);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.