Guest User

AppKernel.php

a guest
Jan 26th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  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\AsseticBundle\AsseticBundle(),
  17. new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
  18. new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
  19. new JMS\AopBundle\JMSAopBundle(),
  20. new JMS\DiExtraBundle\JMSDiExtraBundle($this),
  21. new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
  22. new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
  23.  
  24. new Backend\PagesBundle\BackendPagesBundle(),
  25. new Backend\IndexBundle\BackendIndexBundle(),
  26. new Backend\PagesCatBundle\BackendPagesCatBundle(),
  27. );
  28.  
  29. if (in_array($this->getEnvironment(), array('dev', 'test'))) {
  30. $bundles[] = new Acme\DemoBundle\AcmeDemoBundle();
  31. $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
  32. $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
  33. $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
  34. }
  35.  
  36. return $bundles;
  37. }
  38.  
  39. public function registerContainerConfiguration(LoaderInterface $loader)
  40. {
  41. $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment