You are here

public static function Settings::initialize in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Site/Settings.php \Drupal\Core\Site\Settings::initialize()

Bootstraps settings.php and the Settings singleton.

Parameters

string $app_root: The app root.

string $site_path: The current site path.

\Composer\Autoload\ClassLoader $class_loader: The class loader that is used for this request. Passed by reference and exposed to the local scope of settings.php, so as to allow it to be decorated.

See also

default.settings.php

14 calls to Settings::initialize()
db-tools.php in core/scripts/db-tools.php
A command line application to import a database generation script.
DrupalKernel::initializeSettings in core/lib/Drupal/Core/DrupalKernel.php
Locate site path and initialize settings singleton.
dump-database-d8-mysql.php in core/scripts/dump-database-d8-mysql.php
A command line application to dump a database to a generation script.
FunctionalTestSetupTrait::initSettings in core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php
Initialize settings created during install.
FunctionalTestSetupTrait::prepareSettings in core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php
Prepares site settings and services before installation.

... See full list

File

core/lib/Drupal/Core/Site/Settings.php, line 149

Class

Settings
Read only settings that are initialized with the class.

Namespace

Drupal\Core\Site

Code

public static function initialize($app_root, $site_path, &$class_loader) {

  // Export these settings.php variables to the global namespace.
  global $config;
  $settings = [];
  $config = [];
  $databases = [];
  if (is_readable($app_root . '/' . $site_path . '/settings.php')) {
    require $app_root . '/' . $site_path . '/settings.php';
  }
  self::handleDeprecations($settings);

  // Initialize databases.
  foreach ($databases as $key => $targets) {
    foreach ($targets as $target => $info) {
      Database::addConnectionInfo($key, $target, $info);

      // If the database driver is provided by a module, then its code may
      // need to be instantiated prior to when the module's root namespace
      // is added to the autoloader, because that happens during service
      // container initialization but the container definition is likely in
      // the database. Therefore, allow the connection info to specify an
      // autoload directory for the driver.
      if (isset($info['autoload'])) {
        $class_loader
          ->addPsr4($info['namespace'] . '\\', $info['autoload']);
      }
    }
  }

  // Initialize Settings.
  new Settings($settings);
}