function ConfigImporter::setProcessedConfiguration
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::setProcessedConfiguration()
- 10 core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::setProcessedConfiguration()
- 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\ConfigCode
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.