app/AppKernel.php
changeset 0 7f95f8617b0b
child 2 806e57d67020
equal deleted inserted replaced
-1:000000000000 0:7f95f8617b0b
       
     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 = array(
       
    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\DoctrineBundle\DoctrineBundle(),
       
    17             new Symfony\Bundle\AsseticBundle\AsseticBundle(),
       
    18             new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
       
    19             new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
       
    20         );
       
    21 
       
    22         if (in_array($this->getEnvironment(), array('dev', 'test'))) {
       
    23             $bundles[] = new Acme\DemoBundle\AcmeDemoBundle();
       
    24             $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
       
    25             $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
       
    26             $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
       
    27         }
       
    28 
       
    29         return $bundles;
       
    30     }
       
    31 
       
    32     public function registerContainerConfiguration(LoaderInterface $loader)
       
    33     {
       
    34         $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
       
    35     }
       
    36 }