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 ; } |
Please login to continue.