You are here

public function ConfigDependencyManager::updateData in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Config/Entity/ConfigDependencyManager.php \Drupal\Core\Config\Entity\ConfigDependencyManager::updateData()

Updates one of the lightweight ConfigEntityDependency objects.

Parameters

$name: The configuration dependency name.

array $dependencies: The configuration dependencies. The array is structured like this:


  array(
    'config => array(
      // An array of configuration entity object names.
    ),
    'content => array(
      // An array of content entity configuration dependency names. The default
      // format is "ENTITY_TYPE_ID:BUNDLE:UUID".
    ),
    'module' => array(
      // An array of module names.
    ),
    'theme' => array(
      // An array of theme names.
    ),
  );
  

Return value

$this

File

core/lib/Drupal/Core/Config/Entity/ConfigDependencyManager.php, line 317
Contains \Drupal\Core\Config\Entity\ConfigDependencyManager.

Class

ConfigDependencyManager
Provides a class to discover configuration entity dependencies.

Namespace

Drupal\Core\Config\Entity

Code

public function updateData($name, array $dependencies) {
  $this->graph = NULL;
  $this->data[$name] = new ConfigEntityDependency($name, [
    'dependencies' => $dependencies,
  ]);
  return $this;
}