You are here

public function DatabaseStorage::encode in Zircon Profile 8

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

Encodes configuration data into the storage-specific format.

Parameters

array $data: The configuration data to encode.

Return value

string The encoded configuration data.

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

Overrides StorageInterface::encode

1 call to DatabaseStorage::encode()
DatabaseStorage::write in core/lib/Drupal/Core/Config/DatabaseStorage.php
Writes configuration data to the storage.

File

core/lib/Drupal/Core/Config/DatabaseStorage.php, line 252
Contains \Drupal\Core\Config\DatabaseStorage.

Class

DatabaseStorage
Defines the Database storage.

Namespace

Drupal\Core\Config

Code

public function encode($data) {
  return serialize($data);
}