protected function ConfigImporter::setProcessedExtension in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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 355 - Contains \Drupal\Core\Config\ConfigImporter.
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\ConfigCode
protected function setProcessedExtension($type, $op, $name) {
$this->processedExtensions[$type][$op][] = $name;
}