blob: 252220aa73b7711f2b635678a489180b2619fd81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
namespace Drupal\Core\Installer;
use Drupal\Core\Routing\RouteProviderLazyBuilder;
use Symfony\Component\Routing\Route;
/**
* A Route Provider front-end for use during the installer.
*/
class InstallerRouteProviderLazyBuilder extends RouteProviderLazyBuilder {
/**
* {@inheritdoc}
*/
public function getRouteByName($name) {
if ($name === '<none>' || $name === '<front>') {
// During the installer template_preprocess_page() uses the routing system
// to determine the front page. At this point building the router for this
// is unnecessary work.
return new Route('/');
}
return parent::getRouteByName($name);
}
}
|