You are here

public function Storage::setKeysToExport in Configuration Management 7.2

Set an array of keys names to export. If the array is empty, all the keys of the configuration will be exported.

File

lib/Drupal/configuration/Storage/Storage.php, line 146
Definition of Drupal\configuration\Storage\Storage.

Class

Storage

Namespace

Drupal\configuration\Storage

Code

public function setKeysToExport($keys) {
  $this->keys_to_export = $keys;
  return $this;
}