| author | ymh <ymh.work@gmail.com> |
| Mon, 23 Jan 2012 01:03:40 +0100 | |
| changeset 66 | be41ba7aa5d4 |
| parent 58 | 624e5900f5a4 |
| child 71 | b01e36991488 |
| permissions | -rwxr-xr-x |
| 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\DoctrineBundle\DoctrineBundle(), |
|
17 |
new Symfony\Bundle\AsseticBundle\AsseticBundle(), |
|
18 |
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(), |
|
19 |
new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(), |
|
| 2 | 20 |
new Company\BaseBundle\CompanyBaseBundle(), |
| 3 | 21 |
new FOS\UserBundle\FOSUserBundle(), |
22 |
new Company\UserBundle\CompanyUserBundle(), |
|
| 6 | 23 |
new IRI\Bundle\WikiTagBundle\WikiTagBundle(), |
|
39
03b14b0fe101
Documentation and add alternative wp url and label + migrations
ymh <ymh.work@gmail.com>
parents:
6
diff
changeset
|
24 |
new Symfony\Bundle\DoctrineMigrationsBundle\DoctrineMigrationsBundle(), |
| 58 | 25 |
new Symfony\Bundle\DoctrineFixturesBundle\DoctrineFixturesBundle(), |
| 0 | 26 |
); |
27 |
||
28 |
if (in_array($this->getEnvironment(), array('dev', 'test'))) { |
|
29 |
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); |
|
30 |
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle(); |
|
31 |
$bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(); |
|
32 |
} |
|
33 |
||
34 |
return $bundles; |
|
35 |
} |
|
36 |
||
37 |
public function registerContainerConfiguration(LoaderInterface $loader) |
|
38 |
{ |
|
39 |
$loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml'); |
|
40 |
} |
|
41 |
} |