You are here

public function SettingBase::getCacheTags in Express 8

The cache tags associated with this object.

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

Return value

string[] A set of cache tags.

Overrides SettingInterface::getCacheTags

6 methods override SettingBase::getCacheTags()
CdnCustomCss::getCacheTags in themes/contrib/bootstrap/src/Plugin/Setting/Advanced/Cdn/CdnCustomCss.php
The cache tags associated with this object.
CdnCustomCssMin::getCacheTags in themes/contrib/bootstrap/src/Plugin/Setting/Advanced/Cdn/CdnCustomCssMin.php
The cache tags associated with this object.
CdnCustomJs::getCacheTags in themes/contrib/bootstrap/src/Plugin/Setting/Advanced/Cdn/CdnCustomJs.php
The cache tags associated with this object.
CdnCustomJsMin::getCacheTags in themes/contrib/bootstrap/src/Plugin/Setting/Advanced/Cdn/CdnCustomJsMin.php
The cache tags associated with this object.
CdnProvider::getCacheTags in themes/contrib/bootstrap/src/Plugin/Setting/Advanced/Cdn/CdnProvider.php
The cache tags associated with this object.

... See full list

File

themes/contrib/bootstrap/src/Plugin/Setting/SettingBase.php, line 46
Contains \Drupal\bootstrap\Plugin\Setting\SettingBase.

Class

SettingBase
Base class for a setting.

Namespace

Drupal\bootstrap\Plugin\Setting

Code

public function getCacheTags() {
  return [
    'rendered',
  ];
}