function ConfigImporter::setProcessedExtension
Same name in other branches
- 9 core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::setProcessedExtension()
- 8.9.x core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::setProcessedExtension()
- 10 core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::setProcessedExtension()
Sets an extension change as processed.
Parameters
string $type: The type of extension, either 'theme' or 'module'.
string $op: The change operation performed, either install or uninstall.
string $name: The name of the extension processed.
1 call to ConfigImporter::setProcessedExtension()
- ConfigImporter::processExtension in core/
lib/ Drupal/ Core/ Config/ ConfigImporter.php - Processes an extension change.
File
-
core/
lib/ Drupal/ Core/ Config/ ConfigImporter.php, line 372
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\ConfigCode
protected function setProcessedExtension($type, $op, $name) {
$this->processedExtensions[$type][$op][] = $name;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.