You are here

public function ConfigFactoryOverrideInterface::loadOverrides in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/ConfigFactoryOverrideInterface.php \Drupal\Core\Config\ConfigFactoryOverrideInterface::loadOverrides()
  2. 9 core/lib/Drupal/Core/Config/ConfigFactoryOverrideInterface.php \Drupal\Core\Config\ConfigFactoryOverrideInterface::loadOverrides()

Returns config overrides.

Parameters

array $names: A list of configuration names that are being loaded.

Return value

array An array keyed by configuration name of override data. Override data contains a nested array structure of overrides.

2 methods override ConfigFactoryOverrideInterface::loadOverrides()
ConfigOverrider::loadOverrides in core/modules/settings_tray/tests/modules/settings_tray_override_test/src/ConfigOverrider.php
Returns config overrides.
LanguageConfigFactoryOverride::loadOverrides in core/modules/language/src/Config/LanguageConfigFactoryOverride.php
Returns config overrides.

File

core/lib/Drupal/Core/Config/ConfigFactoryOverrideInterface.php, line 20

Class

ConfigFactoryOverrideInterface
Defines the interface for a configuration factory override object.

Namespace

Drupal\Core\Config

Code

public function loadOverrides($names);