protected function ConfigImporter::getEmptyExtensionsProcessedList

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

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!ConfigImporter.php/function/ConfigImporter::getEmptyExtensionsProcessedList/8.1.x