StorageReplaceDataWrapper::replaceData

public StorageReplaceDataWrapper::replaceData($name, array $data)

Replaces the configuration object data with the supplied data.

Parameters

$name: The configuration object name whose data to replace.

array $data: The configuration data.

Return value

$this

File

core/modules/config/src/StorageReplaceDataWrapper.php, line 198

Class

StorageReplaceDataWrapper
Wraps a configuration storage to allow replacing specific configuration data.

Namespace

Drupal\config

Code

public function replaceData($name, array $data) {
  $this->replacementData[$this->collection][$name] = $data;
  return $this;
}
doc_Drupal
2016-10-29 09:44:49
Comments
Leave a Comment

Please login to continue.