public function ContentTranslationConfigOverrideBase::getCacheSuffix in Open Social 10.3.x
Same name and namespace in other branches
- 8.9 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
- 8.4 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
- 8.5 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
- 8.6 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
- 8.7 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
- 8.8 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
- 10.0.x modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
- 10.1.x modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
- 10.2.x modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
The string to append to the configuration static cache name.
Return value
string A string to append to the configuration static cache name.
Overrides ConfigFactoryOverrideInterface::getCacheSuffix
File
- modules/
social_features/ social_core/ src/ ContentTranslationConfigOverrideBase.php, line 88
Class
- ContentTranslationConfigOverrideBase
- Provides a base class for configurable content translation config overrides.
Namespace
Drupal\social_coreCode
public function getCacheSuffix() {
return $this
->getModule() . '.content_translation_defaults_config_override';
}