ConfigImporter::setProcessedConfiguration

protected ConfigImporter::setProcessedConfiguration($collection, $op, $name)

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 309

Class

ConfigImporter
Defines a configuration importer.

Namespace

Drupal\Core\Config

Code

protected function setProcessedConfiguration($collection, $op, $name) {
  $this->processedConfiguration[$collection][$op][] = $name;
}
doc_Drupal
2016-10-29 08:53:42
Comments
Leave a Comment

Please login to continue.