function ContentEntityStorageBase::resetCache
Same name in other branches
- 9 core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php \Drupal\Core\Entity\ContentEntityStorageBase::resetCache()
- 10 core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php \Drupal\Core\Entity\ContentEntityStorageBase::resetCache()
- 11.x core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php \Drupal\Core\Entity\ContentEntityStorageBase::resetCache()
Overrides EntityStorageBase::resetCache
4 calls to ContentEntityStorageBase::resetCache()
- TermStorage::resetCache in core/
modules/ taxonomy/ src/ TermStorage.php - Resets the internal, static entity cache.
- UserStorage::deleteRoleReferences in core/
modules/ user/ src/ UserStorage.php - Delete role references.
- UserStorage::updateLastAccessTimestamp in core/
modules/ user/ src/ UserStorage.php - Update the last access timestamp of the user.
- UserStorage::updateLastLoginTimestamp in core/
modules/ user/ src/ UserStorage.php - Update the last login timestamp of the user.
1 method overrides ContentEntityStorageBase::resetCache()
- TermStorage::resetCache in core/
modules/ taxonomy/ src/ TermStorage.php - Resets the internal, static entity cache.
File
-
core/
lib/ Drupal/ Core/ Entity/ ContentEntityStorageBase.php, line 1111
Class
- ContentEntityStorageBase
- Base class for content entity storage handlers.
Namespace
Drupal\Core\EntityCode
public function resetCache(array $ids = NULL) {
if ($ids) {
parent::resetCache($ids);
if ($this->entityType
->isPersistentlyCacheable()) {
$cids = [];
foreach ($ids as $id) {
unset($this->latestRevisionIds[$id]);
$cids[] = $this->buildCacheId($id);
}
$this->cacheBackend
->deleteMultiple($cids);
}
}
else {
parent::resetCache();
if ($this->entityType
->isPersistentlyCacheable()) {
Cache::invalidateTags([
$this->entityTypeId . '_values',
]);
}
$this->latestRevisionIds = [];
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.