InstallerServiceProvider::register

public InstallerServiceProvider::register(ContainerBuilder $container) Registers services to the container. Parameters ContainerBuilder $container: The ContainerBuilder to register services to. Overrides ServiceProviderInterface::register File core/lib/Drupal/Core/Installer/InstallerServiceProvider.php, line 22 Class InstallerServiceProvider Service provider for the early installer environment. Namespace Drupal\Core\Installer Code public function register(ContainerBuilder $container)

InstallerServiceProvider::alter

public InstallerServiceProvider::alter(ContainerBuilder $container) Modifies existing service definitions. Parameters ContainerBuilder $container: The ContainerBuilder whose service definitions can be altered. Overrides ServiceModifierInterface::alter File core/lib/Drupal/Core/Installer/InstallerServiceProvider.php, line 67 Class InstallerServiceProvider Service provider for the early installer environment. Namespace Drupal\Core\Installer Code public function alter(ContainerBuilder $c

InstallerServiceProvider

Service provider for the early installer environment. This class is manually added by install_begin_request() via $conf['container_service_providers'] and required to prevent various services from trying to retrieve data from storages that do not exist yet. Hierarchy class \Drupal\Core\Installer\InstallerServiceProvider implements ServiceModifierInterface, ServiceProviderInterface File core/lib/Drupal/Core/Installer/InstallerServiceProvider.php, line 17 Namespace Drupal\Core\Installer

InstallerRouteBuilder::getRouteDefinitions

protected InstallerRouteBuilder::getRouteDefinitions() Overridden to return no routes. @todo Convert installer steps into routes; add an installer.routing.yml. Overrides RouteBuilder::getRouteDefinitions File core/lib/Drupal/Core/Installer/InstallerRouteBuilder.php, line 19 Class InstallerRouteBuilder Manages the router in the installer. Namespace Drupal\Core\Installer Code protected function getRouteDefinitions() { return array(); }

InstallerRouteBuilder

Manages the router in the installer. Hierarchy class \Drupal\Core\Routing\RouteBuilder implements DestructableInterface, RouteBuilderInterfaceclass \Drupal\Core\Installer\InstallerRouteBuilder File core/lib/Drupal/Core/Installer/InstallerRouteBuilder.php, line 10 Namespace Drupal\Core\Installer Members Name Modifiers Type Description InstallerRouteBuilder::getRouteDefinitions protected function Overridden to return no routes. Overrides RouteBuilder::getRouteDefinitions

InstallerKernel::resetConfigStorage

public InstallerKernel::resetConfigStorage() 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 also \Drupal\Core\Database\Install\Tasks::runTasks() File core/lib/Drupal/Core/Installer/InstallerKernel.php, line 32 Class InstallerKernel Extend DrupalKernel to handle force s

InstallerKernel::initializeContainer

protected InstallerKernel::initializeContainer() Initializes the service container. Return value \Symfony\Component\DependencyInjection\ContainerInterface Overrides DrupalKernel::initializeContainer File core/lib/Drupal/Core/Installer/InstallerKernel.php, line 15 Class InstallerKernel Extend DrupalKernel to handle force some kernel behaviors. Namespace Drupal\Core\Installer Code protected function initializeContainer() { // Always force a container rebuild. $this->containerNeed

InstallerKernel::getConfigStorage

public InstallerKernel::getConfigStorage() Returns the active configuration storage used during early install. This override changes the visibility so that the installer can access config storage before the container is properly built. Return value \Drupal\Core\Config\StorageInterface The config storage. Overrides DrupalKernel::getConfigStorage File core/lib/Drupal/Core/Installer/InstallerKernel.php, line 45 Class InstallerKernel Extend DrupalKernel to handle force some kernel behaviors.

InstallerKernel

Extend DrupalKernel to handle force some kernel behaviors. Hierarchy class \Drupal\Core\DrupalKernel implements DrupalKernelInterface, TerminableInterfaceclass \Drupal\Core\Installer\InstallerKernel File core/lib/Drupal/Core/Installer/InstallerKernel.php, line 10 Namespace Drupal\Core\Installer Members Name Modifiers Type Description DrupalKernel::$allowDumping protected property Whether the container can be dumped. DrupalKernel::$booted protected property Wheth

InstallerException::__construct

public InstallerException::__construct($message, $title = 'Error', $code = 0, \Exception $previous = NULL) Constructs a new installer exception. Parameters string $title: The page title. string $message: (optional) The exception message. Defaults to 'Error'. int $code: (optional) The exception code. Defaults to 0. \Exception $previous: (optional) A previous exception. File core/lib/Drupal/Core/Installer/Exception/InstallerException.php, line 32 Class InstallerException Base class for exce