You are here

public function ContentTranslationConfigOverrideBase::getCacheSuffix in Open Social 8.6

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
  2. 8.4 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
  3. 8.5 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
  4. 8.7 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
  5. 8.8 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
  6. 10.3.x modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
  7. 10.0.x modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
  8. 10.1.x modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getCacheSuffix()
  9. 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_core

Code

public function getCacheSuffix() {
  return $this
    ->getModule() . '.content_translation_defaults_config_override';
}