You are here

public function ForumBlockBase::getCacheTags in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/forum/src/Plugin/Block/ForumBlockBase.php \Drupal\forum\Plugin\Block\ForumBlockBase::getCacheTags()

Overrides ContextAwarePluginBase::getCacheTags

File

core/modules/forum/src/Plugin/Block/ForumBlockBase.php, line 97
Contains \Drupal\forum\Plugin\Block\ForumBlockBase.

Class

ForumBlockBase
Provides a base class for Forum blocks.

Namespace

Drupal\forum\Plugin\Block

Code

public function getCacheTags() {
  return Cache::mergeTags(parent::getCacheTags(), [
    'node_list',
  ]);
}