2014-06-26 22:00:27 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Symfony\Component\HttpKernel\Kernel;
|
|
|
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
|
|
|
|
|
|
|
class AppKernel extends Kernel
|
|
|
|
{
|
|
|
|
public function registerBundles()
|
|
|
|
{
|
|
|
|
$bundles = array(
|
|
|
|
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
|
|
|
|
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
|
|
|
|
new Symfony\Bundle\TwigBundle\TwigBundle(),
|
|
|
|
new Symfony\Bundle\MonologBundle\MonologBundle(),
|
|
|
|
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
|
|
|
|
new Symfony\Bundle\AsseticBundle\AsseticBundle(),
|
|
|
|
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
|
|
|
|
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
|
|
|
|
new Hackspace\Bundle\CalciferBundle\CalciferBundle(),
|
2014-07-08 00:11:48 +02:00
|
|
|
new Knp\Bundle\MarkdownBundle\KnpMarkdownBundle(),
|
2014-06-26 22:00:27 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
|
|
|
|
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
|
|
|
|
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
|
|
|
|
$bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
|
2016-06-26 13:48:47 +02:00
|
|
|
$bundles[] = new Liip\FunctionalTestBundle\LiipFunctionalTestBundle();
|
2014-06-26 22:00:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $bundles;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function registerContainerConfiguration(LoaderInterface $loader)
|
|
|
|
{
|
|
|
|
$loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
|
|
|
|
}
|
2016-06-28 19:38:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
public function __construct($environment, $debug)
|
|
|
|
{
|
|
|
|
date_default_timezone_set( 'Europe/Berlin' );
|
|
|
|
parent::__construct($environment, $debug);
|
|
|
|
}
|
2014-06-26 22:00:27 +02:00
|
|
|
}
|