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
1 2 3 4 | public function replaceData( $name , array $data ) { $this ->replacementData[ $this ->collection][ $name ] = $data ; return $this ; } |
Please login to continue.