public function StorageReplaceDataWrapper::replaceData in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/config/src/StorageReplaceDataWrapper.php \Drupal\config\StorageReplaceDataWrapper::replaceData()
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 200 - Contains \Drupal\config\StorageReplaceDataWrapper.
Class
- StorageReplaceDataWrapper
- Wraps a configuration storage to allow replacing specific configuration data.
Namespace
Drupal\configCode
public function replaceData($name, array $data) {
$this->replacementData[$this->collection][$name] = $data;
return $this;
}