public function ModalEnabled::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 SettingBase::getCacheTags
File
- themes/
contrib/ bootstrap/ src/ Plugin/ Setting/ JavaScript/ Modals/ ModalEnabled.php, line 49 - Contains \Drupal\bootstrap\Plugin\Setting\JavaScript\Modals\ModalEnabled.
Class
- ModalEnabled
- The "modal_enabled" theme setting.
Namespace
Drupal\bootstrap\Plugin\Setting\JavaScript\ModalsCode
public function getCacheTags() {
return [
'rendered',
'library_info',
];
}