public ConfigImporter::reset()
Resets the storage comparer and processed list.
Return value
\Drupal\Core\Config\ConfigImporter The ConfigImporter instance.
File
- core/lib/Drupal/Core/Config/ConfigImporter.php, line 236
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\Config
Code
1 2 3 4 5 6 7 8 9 10 11 12 | public function reset() { $this ->storageComparer->reset(); // Empty all the lists. foreach ( $this ->storageComparer->getAllCollectionNames() as $collection ) { $this ->processedConfiguration[ $collection ] = $this ->storageComparer->getEmptyChangelist(); } $this ->extensionChangelist = $this ->processedExtensions = $this ->getEmptyExtensionsProcessedList(); $this ->validated = FALSE; $this ->processedSystemTheme = FALSE; return $this ; } |
Please login to continue.