]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - app/AppKernel.php
Add ldap to composer
[github/wallabag/wallabag.git] / app / AppKernel.php
index 90e9f1d8d91470efe228396fb1d29bd3362a86a0..c4f465dc6bf714221ef7511af26971c4f6f48925 100644 (file)
@@ -42,6 +42,10 @@ class AppKernel extends Kernel
             new OldSound\RabbitMqBundle\OldSoundRabbitMqBundle(),
         ];
 
+        if (class_exists('FR3D\\LdapBundle\\FR3DLdapBundle')) {
+          $bundles[] = new FR3D\LdapBundle\FR3DLdapBundle();
+        }
+
         if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
             $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
             $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
@@ -78,6 +82,12 @@ class AppKernel extends Kernel
                        'base_url' => 'http://localhost:8080/',
                    ],
                ]);
+            } else {
+                $container->loadFromExtension('framework', [
+                    'assets' => [
+                        'base_url' => $container->getParameter('domain_name'),
+                    ],
+                ]);
             }
         });
     }