deblan.tv/app/AppKernel.php

76 lines
3.2 KiB
PHP

<?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 Propel\PropelBundle\PropelBundle(),
new Glorpen\Propel\PropelBundle\GlorpenPropelBundle(),
new JMS\AopBundle\JMSAopBundle(),
new JMS\DiExtraBundle\JMSDiExtraBundle($this),
new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
new FOS\UserBundle\FOSUserBundle(),
new FOS\ElasticaBundle\FOSElasticaBundle(),
new Trinity\Bundle\ContentManagerBundle\TrinityContentManagerBundle(),
new Trinity\Bundle\DashBoardBundle\TrinityDashBoardBundle(),
new Trinity\Bundle\AdminBundle\TrinityAdminBundle(),
new Trinity\Bundle\UserBundle\TrinityUserBundle(),
new Trinity\Bundle\AdminMenuBundle\TrinityAdminMenuBundle(),
new Trinity\Bundle\SecurityBundle\TrinitySecurityBundle(),
new Trinity\Bundle\WidgetBundle\TrinityWidgetBundle(),
new Trinity\Bundle\AssetsBundle\TrinityAssetsBundle(),
new Trinity\Bundle\AdminBreadcrumbsBundle\TrinityAdminBreadcrumbsBundle(),
new Trinity\Bundle\MediaBundle\TrinityMediaBundle(),
new Trinity\Bundle\VarsEditorBundle\TrinityVarsEditorBundle(),
new Trinity\Bundle\ContactBundle\TrinityContactBundle(),
new Trinity\Bundle\EditorialBlockBundle\TrinityEditorialBlockBundle(),
new Stfalcon\Bundle\TinymceBundle\StfalconTinymceBundle(),
new SimpleThings\FormExtraBundle\SimpleThingsFormExtraBundle(),
new Hpatoio\DeployBundle\DeployBundle(),
new Ivory\LuceneSearchBundle\IvoryLuceneSearchBundle(),
new Norzechowicz\AceEditorBundle\NorzechowiczAceEditorBundle(),
new Knp\Bundle\MarkdownBundle\KnpMarkdownBundle(),
new SunCat\MobileDetectBundle\MobileDetectBundle(),
new Deblan\Bundle\BlogBundle\DeblanBlogBundle(),
new Deblan\Bundle\ContactBundle\DeblanContactBundle(),
new Deblan\Bundle\LessonBundle\DeblanLessonBundle(),
);
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();
}
return $bundles;
}
public function registerContainerConfiguration(LoaderInterface $loader)
{
$loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
}
}