You are here

public function SiteHeaderBlock::getCacheTags in Opigno dashboard 3.x

Overrides ContextAwarePluginTrait::getCacheTags

1 call to SiteHeaderBlock::getCacheTags()
SiteHeaderBlock::build in src/Plugin/Block/SiteHeaderBlock.php
Builds and returns the renderable array for this block plugin.

File

src/Plugin/Block/SiteHeaderBlock.php, line 200

Class

SiteHeaderBlock
The site header block.

Namespace

Drupal\opigno_dashboard\Plugin\Block

Code

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