final public static Database::getConnectionInfo($key = 'default')
Gets information on the specified database connection.
Parameters
string $key: (optional) The connection key for which to return information.
Return value
array|null
File
- core/lib/Drupal/Core/Database/Database.php, line 265
Class
- Database
- Primary front-controller for the database system.
Namespace
Drupal\Core\Database
Code
1 2 3 4 5 | final public static function getConnectionInfo( $key = 'default' ) { if (! empty (self:: $databaseInfo [ $key ])) { return self:: $databaseInfo [ $key ]; } } |
Please login to continue.