function ConfigImporter::setProcessedConfiguration

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::setProcessedConfiguration()
  2. 10 core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::setProcessedConfiguration()
  3. 8.9.x core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::setProcessedConfiguration()

Sets a change as processed.

Parameters

string $collection: The configuration collection to set a change as processed for.

string $op: The change operation performed, either delete, create, rename, or update.

string $name: The name of the configuration processed.

File

core/lib/Drupal/Core/Config/ConfigImporter.php, line 334

Class

ConfigImporter
Defines a configuration importer.

Namespace

Drupal\Core\Config

Code

protected function setProcessedConfiguration($collection, $op, $name) {
  $this->processedConfiguration[$collection][$op][] = $name;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.