You are here

protected function ConfigImporter::getEmptyExtensionsProcessedList in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 260
Contains \Drupal\Core\Config\ConfigImporter.

Class

ConfigImporter
Defines a configuration importer.

Namespace

Drupal\Core\Config

Code

protected function getEmptyExtensionsProcessedList() {
  return array(
    'module' => array(
      'install' => array(),
      'uninstall' => array(),
    ),
    'theme' => array(
      'install' => array(),
      'uninstall' => array(),
    ),
  );
}