DrupalKernel::$moduleList

Holds the list of enabled modules. An associative array whose keys are module names and whose values are ignored. Type: array File core/lib/Drupal/Core/DrupalKernel.php, line 134 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $moduleList;

DrupalKernel::$moduleData

List of available modules and installation profiles. Type: \Drupal\Core\Extension\Extension[] File core/lib/Drupal/Core/DrupalKernel.php, line 141 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $moduleData = array();

DrupalKernel::$isEnvironmentInitialized

Whether the PHP environment has been initialized. This legacy phase can only be booted once because it sets session INI settings. If a session has already been started, re-generating these settings would break the session. Type: bool File core/lib/Drupal/Core/DrupalKernel.php, line 223 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected static $isEnvironmentInitialized = FALSE;

DrupalKernel::$environment

The environment, e.g. 'testing', 'install'. Type: string File core/lib/Drupal/Core/DrupalKernel.php, line 111 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $environment;

DrupalKernel::$defaultBootstrapContainerDefinition

Holds the default bootstrap container definition. Type: array File core/lib/Drupal/Core/DrupalKernel.php, line 66 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $defaultBootstrapContainerDefinition = [ 'parameters' => [], 'services' => [ 'database' => [ 'class' => 'Drupal\Core\Database\Connection', 'factory' => 'Drupal\Core\Database\Database::getConnection', 'arguments' => ['defaul

DrupalKernel::$containerNeedsRebuild

Whether the container needs to be rebuilt the next time it is initialized. Type: bool File core/lib/Drupal/Core/DrupalKernel.php, line 169 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $containerNeedsRebuild = FALSE;

DrupalKernel::$containerNeedsDumping

Whether the container needs to be dumped once booting is complete. Type: bool File core/lib/Drupal/Core/DrupalKernel.php, line 176 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $containerNeedsDumping;

DrupalKernel::$container

Holds the container instance. Type: \Symfony\Component\DependencyInjection\ContainerInterface File core/lib/Drupal/Core/DrupalKernel.php, line 104 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $container;

DrupalKernel::$configStorage

Config storage object used for reading enabled modules configuration. Type: \Drupal\Core\Config\StorageInterface File core/lib/Drupal/Core/DrupalKernel.php, line 155 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $configStorage;

DrupalKernel::$classLoader

The class loader object. Type: \Composer\Autoload\ClassLoader File core/lib/Drupal/Core/DrupalKernel.php, line 148 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $classLoader;