On this page
public function ConfigDependencyManager::setData
public ConfigDependencyManager::setData(array $data)
Sets data to calculate dependencies for.
The data is converted into lightweight ConfigEntityDependency objects.
Parameters
array $data: Configuration data keyed by configuration object name. Typically the output of \Drupal\Core\Config\StorageInterface::loadMultiple().
Return value
$this
File
- core/lib/Drupal/Core/Config/Entity/ConfigDependencyManager.php, line 309
Class
- ConfigDependencyManager
- Provides a class to discover configuration entity dependencies.
Namespace
Drupal\Core\Config\EntityCode
public function setData(array $data) {
array_walk($data, function(&$config, $name) {
$config = new ConfigEntityDependency($name, $config);
});
$this->data = $data;
$this->graph = NULL;
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!Entity!ConfigDependencyManager.php/function/ConfigDependencyManager::setData/8.1.x