protected function 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;
}

© 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!ConfigImporter.php/function/ConfigImporter::setProcessedConfiguration/8.1.x