You are here

public function StorageInterface::encode in Drupal 9

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

Encodes configuration data into the storage-specific format.

This is a publicly accessible static method to allow for alternative usages in data conversion scripts and also tests.

Parameters

array $data: The configuration data to encode.

Return value

string The encoded configuration data.

8 methods override StorageInterface::encode()
CachedStorage::encode in core/lib/Drupal/Core/Config/CachedStorage.php
Encodes configuration data into the storage-specific format.
DatabaseStorage::encode in core/lib/Drupal/Core/Config/DatabaseStorage.php
Encodes configuration data into the storage-specific format.
FileStorage::encode in core/lib/Drupal/Core/Config/FileStorage.php
Encodes configuration data into the storage-specific format.
ManagedStorage::encode in core/lib/Drupal/Core/Config/ManagedStorage.php
Encodes configuration data into the storage-specific format.
MemoryStorage::encode in core/lib/Drupal/Core/Config/MemoryStorage.php
Encodes configuration data into the storage-specific format.

... See full list

File

core/lib/Drupal/Core/Config/StorageInterface.php, line 105

Class

StorageInterface
Defines an interface for configuration storage.

Namespace

Drupal\Core\Config

Code

public function encode($data);