Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. EntityViewBuilder.php

function EntityViewBuilder::resetCache

Overrides EntityViewBuilderInterface::resetCache

File

core/lib/Drupal/Core/Entity/EntityViewBuilder.php, line 402

Class

EntityViewBuilder
Base class for entity view builders.

Namespace

Drupal\Core\Entity

Code

public function resetCache(?array $entities = NULL) {
    // If no set of specific entities is provided, invalidate the entity view
    // builder's cache tag. This will invalidate all entities rendered by this
    // view builder.
    // Otherwise, if a set of specific entities is provided, invalidate those
    // specific entities only, plus their list cache tags, because any lists in
    // which these entities are rendered, must be invalidated as well. However,
    // even in this case, we might invalidate more cache items than necessary.
    // When we have a way to invalidate only those cache items that have both
    // the individual entity's cache tag and the view builder's cache tag, we'll
    // be able to optimize this further.
    if (isset($entities)) {
        $tags = [];
        foreach ($entities as $entity) {
            $tags = Cache::mergeTags($tags, $entity->getCacheTags());
            $tags = Cache::mergeTags($tags, $entity->getEntityType()
                ->getListCacheTags());
        }
        Cache::invalidateTags($tags);
    }
    else {
        Cache::invalidateTags($this->getCacheTags());
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal