public ConfigBase::setData(array $data)
Replaces the data of this configuration object.
array $data: The new configuration data.
$this The configuration object.
\Drupal\Core\Config\ConfigValueException If any key in $data in any depth contains a dot.
public function setData(array $data) { $data = $this->castSafeStrings($data); $this->validateKeys($data); $this->data = $data; return $this; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!ConfigBase.php/function/ConfigBase::setData/8.1.x