function LocalActionDefault::getCacheTags

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Menu/LocalActionDefault.php \Drupal\Core\Menu\LocalActionDefault::getCacheTags()
  2. 8.9.x core/lib/Drupal/Core/Menu/LocalActionDefault.php \Drupal\Core\Menu\LocalActionDefault::getCacheTags()
  3. 10 core/lib/Drupal/Core/Menu/LocalActionDefault.php \Drupal\Core\Menu\LocalActionDefault::getCacheTags()

The cache tags associated with this object.

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

Return value

list<string> A set of cache tags.

Overrides CacheableDependencyInterface::getCacheTags

File

core/lib/Drupal/Core/Menu/LocalActionDefault.php, line 128

Class

LocalActionDefault
Provides a default implementation for local action plugins.

Namespace

Drupal\Core\Menu

Code

public function getCacheTags() {
  if (!isset($this->pluginDefinition['cache_tags'])) {
    return [];
  }
  return $this->pluginDefinition['cache_tags'];
}

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