function Tid::getCacheTags

Same name and namespace in other branches
  1. 10 core/modules/taxonomy/src/Plugin/views/argument_default/Tid.php \Drupal\taxonomy\Plugin\views\argument_default\Tid::getCacheTags()

Overrides ArgumentDefaultPluginBase::getCacheTags

File

core/modules/taxonomy/src/Plugin/views/argument_default/Tid.php, line 203

Class

Tid
Taxonomy tid default argument.

Namespace

Drupal\taxonomy\Plugin\views\argument_default

Code

public function getCacheTags() {
    $tags = parent::getCacheTags();
    if (!empty($this->options['node'])) {
        if (($node = $this->routeMatch
            ->getParameter('node')) && $node instanceof NodeInterface) {
            $tags = Cache::mergeTags($tags, $node->getCacheTags());
        }
    }
    return $tags;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.