public function PanelizerEntityViewBuilder::getCacheTags in Panelizer 8.4
Same name and namespace in other branches
- 8.5 src/PanelizerEntityViewBuilder.php \Drupal\panelizer\PanelizerEntityViewBuilder::getCacheTags()
- 8.3 src/PanelizerEntityViewBuilder.php \Drupal\panelizer\PanelizerEntityViewBuilder::getCacheTags()
The cache tag associated with this entity view builder.
An entity view builder is instantiated on a per-entity type basis, so the cache tags are also per-entity type.
Return value
array An array of cache tags.
Overrides EntityViewBuilderInterface::getCacheTags
File
- src/
PanelizerEntityViewBuilder.php, line 330
Class
- PanelizerEntityViewBuilder
- Entity view builder for entities that can be panelized.
Namespace
Drupal\panelizerCode
public function getCacheTags() {
return $this
->getFallbackViewBuilder()
->getCacheTags();
}