function ConfigImporter::getEmptyExtensionsProcessedList
Same name in other branches
- 9 core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::getEmptyExtensionsProcessedList()
- 10 core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::getEmptyExtensionsProcessedList()
- 11.x core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::getEmptyExtensionsProcessedList()
Gets an empty list of extensions to process.
Return value
array An empty list of extensions to process.
3 calls to ConfigImporter::getEmptyExtensionsProcessedList()
- ConfigImporter::createExtensionChangelist in core/
lib/ Drupal/ Core/ Config/ ConfigImporter.php - Populates the extension change list.
- ConfigImporter::reset in core/
lib/ Drupal/ Core/ Config/ ConfigImporter.php - Resets the storage comparer and processed list.
- ConfigImporter::__construct in core/
lib/ Drupal/ Core/ Config/ ConfigImporter.php - Constructs a configuration import object.
File
-
core/
lib/ Drupal/ Core/ Config/ ConfigImporter.php, line 273
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\ConfigCode
protected function getEmptyExtensionsProcessedList() {
return [
'module' => [
'install' => [],
'uninstall' => [],
],
'theme' => [
'install' => [],
'uninstall' => [],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.