You are here

public function StorageInterface::encode in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/StorageInterface.php \Drupal\Core\Config\StorageInterface::encode()
  2. 9 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.

1 method overrides StorageInterface::encode()
MemoryStorage::encode in core/lib/Drupal/Core/Config/MemoryStorage.php
Encodes configuration data into the storage-specific format.

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);