class InstallerKernel in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Installer/InstallerKernel.php \Drupal\Core\Installer\InstallerKernel
Extend DrupalKernel to handle force some kernel behaviors.
Hierarchy
- class \Drupal\Core\DrupalKernel implements DrupalKernelInterface, TerminableInterface
- class \Drupal\Core\Installer\InstallerKernel
Expanded class hierarchy of InstallerKernel
1 file declares its use of InstallerKernel
- install.core.inc in core/
includes/ install.core.inc - API functions for installing Drupal.
File
- core/
lib/ Drupal/ Core/ Installer/ InstallerKernel.php, line 15 - Contains \Drupal\Core\Installer\InstallerKernel.
Namespace
Drupal\Core\InstallerView source
class InstallerKernel extends DrupalKernel {
/**
* {@inheritdoc}
*/
protected function initializeContainer() {
// Always force a container rebuild.
$this->containerNeedsRebuild = TRUE;
$container = parent::initializeContainer();
return $container;
}
/**
* Reset the bootstrap config storage.
*
* Use this from a database driver runTasks() if the method overrides the
* bootstrap config storage. Normally the bootstrap config storage is not
* re-instantiated during a single install request. Most drivers will not
* need this method.
*
* @see \Drupal\Core\Database\Install\Tasks::runTasks().
*/
public function resetConfigStorage() {
$this->configStorage = NULL;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DrupalKernel:: |
protected | property | Whether the container can be dumped. | |
DrupalKernel:: |
protected | property | Whether the kernel has been booted. | |
DrupalKernel:: |
protected | property | Holds the bootstrap container. | |
DrupalKernel:: |
protected | property | Holds the class used for instantiating the bootstrap container. | |
DrupalKernel:: |
protected | property | The class loader object. | |
DrupalKernel:: |
protected | property | Config storage object used for reading enabled modules configuration. | |
DrupalKernel:: |
protected | property | Holds the container instance. | |
DrupalKernel:: |
protected | property | Whether the container needs to be dumped once booting is complete. | |
DrupalKernel:: |
protected | property | Whether the container needs to be rebuilt the next time it is initialized. | |
DrupalKernel:: |
protected | property | Holds the default bootstrap container definition. | |
DrupalKernel:: |
protected | property | The environment, e.g. 'testing', 'install'. | |
DrupalKernel:: |
protected static | property | Whether the PHP environment has been initialized. | |
DrupalKernel:: |
protected | property | List of available modules and installation profiles. | |
DrupalKernel:: |
protected | property | Holds the list of enabled modules. | |
DrupalKernel:: |
protected | property | Holds the class used for dumping the container to a PHP array. | |
DrupalKernel:: |
protected | property | Whether essential services have been set up properly by preHandle(). | |
DrupalKernel:: |
protected | property | The app root. | |
DrupalKernel:: |
protected | property | List of discovered service provider class names or objects. | |
DrupalKernel:: |
protected | property | List of instantiated service provider classes. | |
DrupalKernel:: |
protected | property | List of discovered services.yml pathnames. | |
DrupalKernel:: |
protected | property | The site directory. | |
DrupalKernel:: |
protected | function | Add service files. | |
DrupalKernel:: |
protected | function | Attach synthetic values on to kernel. | |
DrupalKernel:: |
public | function |
Boots the current kernel. Overrides DrupalKernelInterface:: |
1 |
DrupalKernel:: |
public static | function | Setup a consistent PHP environment. | |
DrupalKernel:: |
protected | function | Stores the container definition in a cache. | 1 |
DrupalKernel:: |
protected | function | Registers a list of namespaces with PSR-4 directories for class loading. | |
DrupalKernel:: |
protected | function | Compiles a new service container. | |
DrupalKernel:: |
public static | function | Create a DrupalKernel object from a request. | 1 |
DrupalKernel:: |
public | function |
Discovers available serviceProviders. Overrides DrupalKernelInterface:: |
2 |
DrupalKernel:: |
public static | function | Returns the appropriate site directory for a request. | |
DrupalKernel:: |
public | function |
Gets the app root. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
public | function |
Returns the cached container definition - if any. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
protected | function | Returns the active configuration storage to use during building the container. | |
DrupalKernel:: |
public | function |
Gets the current container. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
protected | function | Gets a new ContainerBuilder instance used to build the service container. | |
DrupalKernel:: |
protected | function | Returns the container cache key based on the environment. | |
DrupalKernel:: |
protected | function | Gets a http kernel from the container | |
DrupalKernel:: |
protected | function | Returns the kernel parameters. | |
DrupalKernel:: |
protected | function | Gets the file name for each enabled module. | |
DrupalKernel:: |
protected | function | Gets the PSR-4 base directories for module namespaces. | |
DrupalKernel:: |
protected | function | Returns an array of Extension class parameters for all enabled modules. | |
DrupalKernel:: |
public | function |
Returns all registered service providers. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
protected | function | Returns service instances to persist from an old container to a new one. | |
DrupalKernel:: |
public | function |
Get the site path. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
public | function |
Handles a Request to convert it to a Response. Overrides HttpKernelInterface:: |
1 |
DrupalKernel:: |
protected | function | Converts an exception into a response. | |
DrupalKernel:: |
protected | function | Bootstraps the legacy global request variables. | |
DrupalKernel:: |
protected | function | Registers all service providers to the kernel. | |
DrupalKernel:: |
protected | function | Locate site path and initialize settings singleton. | |
DrupalKernel:: |
public | function |
Invalidate the service container for the next request. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
public | function |
Helper method that loads legacy Drupal include files. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
protected | function | Returns module data on the filesystem. | |
DrupalKernel:: |
protected | function | Moves persistent service instances into a new container. | |
DrupalKernel:: |
public | function |
Helper method that does request related initialization. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
public | function |
Prepare the kernel for handling a request without handling the request. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
public | function |
Force a container rebuild. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
public | function |
Sets the Container. Overrides ContainerAwareInterface:: |
|
DrupalKernel:: |
public | function |
Set the current site path. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
protected static | function | Sets up the lists of trusted HTTP Host headers. | |
DrupalKernel:: |
public | function |
Shuts down the kernel. Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
public | function |
Terminates a request/response cycle. Overrides TerminableInterface:: |
|
DrupalKernel:: |
public | function |
Implements Drupal\Core\DrupalKernelInterface::updateModules(). Overrides DrupalKernelInterface:: |
|
DrupalKernel:: |
public static | function | Validates the hostname supplied from the HTTP request. | |
DrupalKernel:: |
protected static | function | Validates a hostname length. | |
DrupalKernel:: |
public | function | Constructs a DrupalKernel object. | 2 |
HttpKernelInterface:: |
constant | |||
HttpKernelInterface:: |
constant | |||
InstallerKernel:: |
protected | function |
Initializes the service container. Overrides DrupalKernel:: |
|
InstallerKernel:: |
public | function | Reset the bootstrap config storage. |