You are here

public function Entity::getCacheTags in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/Entity.php \Drupal\Core\Entity\Entity::getCacheTags()

The cache tags associated with this object.

When this object is modified, these cache tags will be invalidated.

Return value

string[] A set of cache tags.

Overrides RefinableCacheableDependencyTrait::getCacheTags

1 call to Entity::getCacheTags()
View::invalidateCaches in core/modules/views/src/Entity/View.php
Invalidates cache tags.

File

core/lib/Drupal/Core/Entity/Entity.php, line 484
Contains \Drupal\Core\Entity\Entity.

Class

Entity
Defines a base entity class.

Namespace

Drupal\Core\Entity

Code

public function getCacheTags() {
  if ($this->cacheTags) {
    return Cache::mergeTags($this
      ->getCacheTagsToInvalidate(), $this->cacheTags);
  }
  return $this
    ->getCacheTagsToInvalidate();
}