function ConfigOverride::loadOverrides

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Installer/ConfigOverride.php \Drupal\Core\Installer\ConfigOverride::loadOverrides()
  2. 8.9.x core/lib/Drupal/Core/Installer/ConfigOverride.php \Drupal\Core\Installer\ConfigOverride::loadOverrides()
  3. 10 core/lib/Drupal/Core/Installer/ConfigOverride.php \Drupal\Core\Installer\ConfigOverride::loadOverrides()

File

core/lib/Drupal/Core/Installer/ConfigOverride.php, line 29

Class

ConfigOverride
Override configuration during the installer.

Namespace

Drupal\Core\Installer

Code

public function loadOverrides($names) {
    $overrides = [];
    if (InstallerKernel::installationAttempted() && function_exists('drupal_install_profile_distribution_name')) {
        // Early in the installer the site name is unknown. In this case we need
        // to fallback to the distribution's name.
        $overrides['system.site'] = [
            'name' => drupal_install_profile_distribution_name(),
        ];
    }
    return $overrides;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.