LocaleConfigManager::filterOverride

protected LocaleConfigManager::filterOverride(array $override_data, array $translatable) Filters override data based on default translatable items. Parameters array $override_data: Configuration override data. array $translatable: Translatable data array. @see self::getTranslatableData() Return value array Nested array of any items of $override_data which did not have keys in $translatable. May be empty if $override_data only had items which were also in $translatable. File core/modules/local

LocaleConfigManager::deleteTranslationOverride

protected LocaleConfigManager::deleteTranslationOverride($name, $langcode) Deletes translated configuration data. Parameters string $name: Configuration object name. string $langcode: Language code. File core/modules/locale/src/LocaleConfigManager.php, line 283 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code protected function deleteTranslationOverride($name, $langcode) { $this->isUpdatingFromLocale = TRUE;

LocaleConfigManager::deleteLanguageTranslations

public LocaleConfigManager::deleteLanguageTranslations($langcode) Deletes configuration for language. Parameters string $langcode: Language code to delete. File core/modules/locale/src/LocaleConfigManager.php, line 339 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code public function deleteLanguageTranslations($langcode) { $this->isUpdatingFromLocale = TRUE; $storage = $this->languageManager->getLangua

LocaleConfigManager::$typedConfigManager

The typed config manager. Type: \Drupal\Core\Config\TypedConfigManagerInterface File core/modules/locale/src/LocaleConfigManager.php, line 76 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code protected $typedConfigManager;

LocaleConfigManager::$translations

Array with preloaded string translations. Type: array File core/modules/locale/src/LocaleConfigManager.php, line 55 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code protected $translations;

LocaleConfigManager::$localeStorage

The string storage for reading and writing translations. Type: \Drupal\locale\StringStorageInterface; File core/modules/locale/src/LocaleConfigManager.php, line 48 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code protected $localeStorage;

LocaleConfigManager::$languageManager

The language manager. Type: \Drupal\language\ConfigurableLanguageManagerInterface File core/modules/locale/src/LocaleConfigManager.php, line 69 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code protected $languageManager;

LocaleConfigManager::$isUpdatingFromLocale

Whether or not configuration translations are being updated from locale. Type: bool See also self::isUpdatingFromLocale() File core/modules/locale/src/LocaleConfigManager.php, line 85 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code protected $isUpdatingFromLocale = FALSE;

LocaleConfigManager::$defaultConfigStorage

The locale default config storage instance. Type: \Drupal\locale\LocaleDefaultConfigStorage File core/modules/locale/src/LocaleConfigManager.php, line 92 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code protected $defaultConfigStorage;

LocaleConfigManager::$configStorage

The storage instance for reading configuration data. Type: \Drupal\Core\Config\StorageInterface File core/modules/locale/src/LocaleConfigManager.php, line 41 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code protected $configStorage;