]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/AppKernel.php
Rename CommentBundle with AnnotationBundle
[github/wallabag/wallabag.git] / app / AppKernel.php
1 <?php
2
3 use Symfony\Component\HttpKernel\Kernel;
4 use Symfony\Component\Config\Loader\LoaderInterface;
5
6 class AppKernel extends Kernel
7 {
8 public function registerBundles()
9 {
10 $bundles = [
11 new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
12 new Symfony\Bundle\SecurityBundle\SecurityBundle(),
13 new Symfony\Bundle\TwigBundle\TwigBundle(),
14 new Symfony\Bundle\MonologBundle\MonologBundle(),
15 new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
16 new Symfony\Bundle\AsseticBundle\AsseticBundle(),
17 new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
18 new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
19 new FOS\RestBundle\FOSRestBundle(),
20 new FOS\UserBundle\FOSUserBundle(),
21 new JMS\SerializerBundle\JMSSerializerBundle(),
22 new Nelmio\ApiDocBundle\NelmioApiDocBundle(),
23 new Nelmio\CorsBundle\NelmioCorsBundle(),
24 new Liip\ThemeBundle\LiipThemeBundle(),
25 new Wallabag\CoreBundle\WallabagCoreBundle(),
26 new Wallabag\ApiBundle\WallabagApiBundle(),
27 new Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle(),
28 new Lexik\Bundle\FormFilterBundle\LexikFormFilterBundle(),
29 new FOS\OAuthServerBundle\FOSOAuthServerBundle(),
30 new Wallabag\UserBundle\WallabagUserBundle(),
31 new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
32 new Scheb\TwoFactorBundle\SchebTwoFactorBundle(),
33 new KPhoen\RulerZBundle\KPhoenRulerZBundle(),
34 new Wallabag\ImportBundle\WallabagImportBundle(),
35 new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(),
36 new Craue\ConfigBundle\CraueConfigBundle(),
37 new Lexik\Bundle\MaintenanceBundle\LexikMaintenanceBundle(),
38 new Wallabag\AnnotationBundle\WallabagAnnotationBundle(),
39 ];
40
41 if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
42 $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
43 $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
44 $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
45 $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
46 $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle();
47 }
48
49 return $bundles;
50 }
51
52 public function getRootDir()
53 {
54 return __DIR__;
55 }
56
57 public function getCacheDir()
58 {
59 return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
60 }
61
62 public function getLogDir()
63 {
64 return dirname(__DIR__).'/var/logs';
65 }
66
67 public function registerContainerConfiguration(LoaderInterface $loader)
68 {
69 $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
70 }
71 }