protected ConfigImporter::getEmptyExtensionsProcessedList()
Gets an empty list of extensions to process.
Return value
array An empty list of extensions to process.
File
- core/lib/Drupal/Core/Config/ConfigImporter.php, line 255
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\Config
Code
1 2 3 4 5 6 7 8 9 10 11 12 | protected function getEmptyExtensionsProcessedList() { return array ( 'module' => array ( 'install' => array (), 'uninstall' => array (), ), 'theme' => array ( 'install' => array (), 'uninstall' => array (), ), ); } |
Please login to continue.