Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/ConfigInstaller.php \Drupal\Core\Config\ConfigInstaller::getEnabledExtensions()
  2. 9 core/lib/Drupal/Core/Config/ConfigInstaller.php \Drupal\Core\Config\ConfigInstaller::getEnabledExtensions()

Gets the list of enabled extensions including both modules and themes.

Return value

array A list of enabled extensions which includes both modules and themes.

4 calls to ConfigInstaller::getEnabledExtensions()
ConfigInstaller::checkConfigurationToInstall in core/lib/Drupal/Core/Config/ConfigInstaller.php
ConfigInstaller::installCollectionDefaultConfig in core/lib/Drupal/Core/Config/ConfigInstaller.php
ConfigInstaller::installDefaultConfig in core/lib/Drupal/Core/Config/ConfigInstaller.php
ConfigInstaller::installOptionalConfig in core/lib/Drupal/Core/Config/ConfigInstaller.php

File

core/lib/Drupal/Core/Config/ConfigInstaller.php, line 660

Class

ConfigInstaller

Namespace

Drupal\Core\Config

Code

protected function getEnabledExtensions() {

  // Read enabled extensions directly from configuration to avoid circular
  // dependencies on ModuleHandler and ThemeHandler.
  $extension_config = $this->configFactory
    ->get('core.extension');
  $enabled_extensions = (array) $extension_config
    ->get('module');
  $enabled_extensions += (array) $extension_config
    ->get('theme');

  // Core can provide configuration.
  $enabled_extensions['core'] = 'core';
  return array_keys($enabled_extensions);
}