You are here

public function StorageInterface::write in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Config/StorageInterface.php \Drupal\Core\Config\StorageInterface::write()

Writes configuration data to the storage.

Parameters

string $name: The name of a configuration object to save.

array $data: The configuration data to write.

Return value

bool TRUE on success, FALSE in case of an error.

Throws

\Drupal\Core\Config\StorageException If the back-end storage does not exist and cannot be created.

5 methods override StorageInterface::write()
CachedStorage::write in core/lib/Drupal/Core/Config/CachedStorage.php
Writes configuration data to the storage.
DatabaseStorage::write in core/lib/Drupal/Core/Config/DatabaseStorage.php
Writes configuration data to the storage.
FileStorage::write in core/lib/Drupal/Core/Config/FileStorage.php
Writes configuration data to the storage.
NullStorage::write in core/lib/Drupal/Core/Config/NullStorage.php
Writes configuration data to the storage.
StorageReplaceDataWrapper::write in core/modules/config/src/StorageReplaceDataWrapper.php
Writes configuration data to the storage.

File

core/lib/Drupal/Core/Config/StorageInterface.php, line 72
Contains \Drupal\Core\Config\StorageInterface.

Class

StorageInterface
Defines an interface for configuration storage.

Namespace

Drupal\Core\Config

Code

public function write($name, array $data);