Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::getCacheTagsToInvalidate()
  2. 9 core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::getCacheTagsToInvalidate()

Returns the cache tags that should be used to invalidate caches.

This will not return additional cache tags added through addCacheTags().

Return value

string[] Set of cache tags.

Overrides EntityBase::getCacheTagsToInvalidate

See also

\Drupal\Core\Cache\RefinableCacheableDependencyInterface::addCacheTags()

\Drupal\Core\Cache\CacheableDependencyInterface::getCacheTags()

2 calls to ConfigEntityBase::getCacheTagsToInvalidate()
Block::postSave in core/modules/block/src/Entity/Block.php
Acts on a saved entity before the insert or update hook is invoked.
ImageStyle::flush in core/modules/image/src/Entity/ImageStyle.php
Flushes cached media for this style.
1 method overrides ConfigEntityBase::getCacheTagsToInvalidate()
DateFormat::getCacheTagsToInvalidate in core/lib/Drupal/Core/Datetime/Entity/DateFormat.php
Returns the cache tags that should be used to invalidate caches.

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 407

Class

ConfigEntityBase

Namespace

Drupal\Core\Config\Entity

Code

public function getCacheTagsToInvalidate() {

  // Use cache tags that match the underlying config object's name.
  // @see \Drupal\Core\Config\ConfigBase::getCacheTags()
  return [
    'config:' . $this
      ->getConfigDependencyName(),
  ];
}