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
Namespace
Drupal\configuration\StorageCode
public function setKeysToExport($keys) {
$this->keys_to_export = $keys;
return $this;
}