public function EntityViewBuilder::resetCache in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Entity/EntityViewBuilder.php \Drupal\Core\Entity\EntityViewBuilder::resetCache()
Resets the entity render cache.
Parameters
\Drupal\Core\Entity\EntityInterface[] $entities: (optional) If specified, the cache is reset for the given entities only.
Overrides EntityViewBuilderInterface::resetCache
File
- core/
lib/ Drupal/ Core/ Entity/ EntityViewBuilder.php, line 413
Class
- EntityViewBuilder
- Base class for entity view builders.
Namespace
Drupal\Core\EntityCode
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());
}
}