You are here

final public static function Database::getConnectionInfo in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Database/Database.php \Drupal\Core\Database\Database::getConnectionInfo()
  2. 10 core/lib/Drupal/Core/Database/Database.php \Drupal\Core\Database\Database::getConnectionInfo()

Gets information on the specified database connection.

Parameters

string $key: (optional) The connection key for which to return information.

Return value

array|null

47 calls to Database::getConnectionInfo()
BrowserTestBase::cleanupEnvironment in core/tests/Drupal/Tests/BrowserTestBase.php
Clean up the Simpletest environment.
ConnectionTest::testConnectionOptions in core/tests/Drupal/KernelTests/Core/Database/ConnectionTest.php
Tests the connection options of the active database.
ConnectionTest::testConnectionRouting in core/tests/Drupal/KernelTests/Core/Database/ConnectionTest.php
Tests that connections return appropriate connection objects.
ConnectionTest::testConnectionRoutingOverride in core/tests/Drupal/KernelTests/Core/Database/ConnectionTest.php
Tests that connections return appropriate connection objects.
ConnectionUnitTest::addConnection in core/tests/Drupal/KernelTests/Core/Database/ConnectionUnitTest.php
Adds a new database connection info to Database.

... See full list

File

core/lib/Drupal/Core/Database/Database.php, line 268

Class

Database
Primary front-controller for the database system.

Namespace

Drupal\Core\Database

Code

public static final function getConnectionInfo($key = 'default') {
  if (!empty(self::$databaseInfo[$key])) {
    return self::$databaseInfo[$key];
  }
}