You are here

protected function ContentTranslationConfigOverrideBase::getOverriddenConfigurations in Open Social 8.5

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

Code

protected function getOverriddenConfigurations() {
  return array_keys($this
    ->getTranslationOverrides());
}