DatabaseStorage::__construct

public DatabaseStorage::__construct(Connection $connection, $table, array $options = array(), $collection = StorageInterface::DEFAULT_COLLECTION)

Constructs a new DatabaseStorage.

Parameters

\Drupal\Core\Database\Connection $connection: A Database connection to use for reading and writing configuration data.

string $table: A database table name to store configuration data in.

array $options: (optional) Any additional database connection options to use in queries.

string $collection: (optional) The collection to store configuration in. Defaults to the default collection.

File

core/lib/Drupal/Core/Config/DatabaseStorage.php, line 57

Class

DatabaseStorage
Defines the Database storage.

Namespace

Drupal\Core\Config

Code

1
2
3
4
5
6
public function __construct(Connection $connection, $table, array $options = array(), $collection = StorageInterface::DEFAULT_COLLECTION) {
  $this->connection = $connection;
  $this->table = $table;
  $this->options = $options;
  $this->collection = $collection;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.