public function DatabaseStorage::encode in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Config/DatabaseStorage.php \Drupal\Core\Config\DatabaseStorage::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.
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 248 
Class
- DatabaseStorage
- Defines the Database storage.
Namespace
Drupal\Core\ConfigCode
public function encode($data) {
  return serialize($data);
}