protected function ContentTranslationConfigOverrideBase::getOverriddenConfigurations 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::getOverriddenConfigurations()
- 8.4 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getOverriddenConfigurations()
- 8.5 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getOverriddenConfigurations()
- 8.6 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getOverriddenConfigurations()
- 8.7 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getOverriddenConfigurations()
- 8.8 modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getOverriddenConfigurations()
- 10.0.x modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getOverriddenConfigurations()
- 10.1.x modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getOverriddenConfigurations()
- 10.2.x modules/social_features/social_core/src/ContentTranslationConfigOverrideBase.php \Drupal\social_core\ContentTranslationConfigOverrideBase::getOverriddenConfigurations()
Returns the configurations that are overridden in this class.
Return value
array An array of configuration names.
1 call to ContentTranslationConfigOverrideBase::getOverriddenConfigurations()
- ContentTranslationConfigOverrideBase::getCacheableMetadata in modules/
social_features/ social_core/ src/ ContentTranslationConfigOverrideBase.php - Gets the cacheability metadata associated with the config factory override.
File
- modules/
social_features/ social_core/ src/ ContentTranslationConfigOverrideBase.php, line 81
Class
- ContentTranslationConfigOverrideBase
- Provides a base class for configurable content translation config overrides.
Namespace
Drupal\social_coreCode
protected function getOverriddenConfigurations() {
return array_keys($this
->getTranslationOverrides());
}