You are here

public function LocaleConfigManager::getTranslatableDefaultConfig in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/locale/src/LocaleConfigManager.php \Drupal\locale\LocaleConfigManager::getTranslatableDefaultConfig()
  2. 10 core/modules/locale/src/LocaleConfigManager.php \Drupal\locale\LocaleConfigManager::getTranslatableDefaultConfig()

Gets array of translated strings for Locale translatable configuration.

Parameters

string $name: Configuration object name.

Return value

array Array of Locale translatable elements of the default configuration in $name.

1 call to LocaleConfigManager::getTranslatableDefaultConfig()
LocaleConfigManager::updateConfigTranslations in core/modules/locale/src/LocaleConfigManager.php
Updates all configuration translations for the names / languages provided.

File

core/modules/locale/src/LocaleConfigManager.php, line 139

Class

LocaleConfigManager
Manages configuration supported in part by interface translation.

Namespace

Drupal\locale

Code

public function getTranslatableDefaultConfig($name) {
  if ($this
    ->isSupported($name)) {

    // Create typed configuration wrapper based on install storage data.
    $data = $this->defaultConfigStorage
      ->read($name);
    $typed_config = $this->typedConfigManager
      ->createFromNameAndData($name, $data);
    if ($typed_config instanceof TraversableTypedDataInterface) {
      return $this
        ->getTranslatableData($typed_config);
    }
  }
  return [];
}