-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
AppKernel.php
79 lines (66 loc) · 2.1 KB
/
AppKernel.php
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
declare(strict_types=1);
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\Twig\Tests\App;
use Sonata\Doctrine\Bridge\Symfony\Bundle\SonataDoctrineBundle;
use Sonata\Twig\Bridge\Symfony\SonataTwigBundle;
use Symfony\Bundle\FrameworkBundle\Controller\TemplateController;
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Bundle\TwigBundle\TwigBundle;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollectionBuilder;
final class AppKernel extends Kernel
{
use MicroKernelTrait;
public function __construct()
{
parent::__construct('test', false);
}
public function registerBundles(): array
{
return [
new FrameworkBundle(),
new TwigBundle(),
new SonataDoctrineBundle(),
new SonataTwigBundle(),
];
}
public function getCacheDir(): string
{
return $this->getBaseDir().'cache';
}
public function getLogDir(): string
{
return $this->getBaseDir().'log';
}
public function getProjectDir(): string
{
return __DIR__;
}
protected function configureRoutes(RouteCollectionBuilder $routes): void
{
$route = new Route('/');
$route->setDefault('_controller', TemplateController::class.'::templateAction');
$routes->setDefault('template', 'index.html.twig');
$routes->addRoute($route);
}
protected function configureContainer(ContainerBuilder $containerBuilder, LoaderInterface $loader): void
{
$loader->load(__DIR__.'/config.yml');
}
private function getBaseDir(): string
{
return sys_get_temp_dir().'/sonata-twig-extensions/var/';
}
}