2019-02-23 16:49:38 +01:00
|
|
|
<?php
|
2019-11-01 13:40:30 +01:00
|
|
|
/**
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
2019-02-23 16:49:38 +01:00
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
|
|
|
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
|
|
|
use Symfony\Component\Config\Resource\FileResource;
|
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
|
|
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
|
|
|
|
use Symfony\Component\Routing\RouteCollectionBuilder;
|
|
|
|
|
|
|
|
class Kernel extends BaseKernel
|
|
|
|
{
|
|
|
|
use MicroKernelTrait;
|
|
|
|
|
|
|
|
const CONFIG_EXTS = '.{php,xml,yaml,yml}';
|
|
|
|
|
|
|
|
public function registerBundles()
|
|
|
|
{
|
|
|
|
$contents = require $this->getProjectDir().'/config/bundles.php';
|
|
|
|
foreach ($contents as $class => $envs) {
|
|
|
|
if ($envs[$this->environment] ?? $envs['all'] ?? false) {
|
|
|
|
yield new $class();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader)
|
|
|
|
{
|
|
|
|
$container->addResource(new FileResource($this->getProjectDir().'/config/bundles.php'));
|
|
|
|
$container->setParameter('container.dumper.inline_class_loader', true);
|
|
|
|
$confDir = $this->getProjectDir().'/config';
|
|
|
|
|
|
|
|
$loader->load($confDir.'/{packages}/*'.self::CONFIG_EXTS, 'glob');
|
|
|
|
$loader->load($confDir.'/{packages}/'.$this->environment.'/**/*'.self::CONFIG_EXTS, 'glob');
|
|
|
|
$loader->load($confDir.'/{services}'.self::CONFIG_EXTS, 'glob');
|
|
|
|
$loader->load($confDir.'/{services}_'.$this->environment.self::CONFIG_EXTS, 'glob');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configureRoutes(RouteCollectionBuilder $routes)
|
|
|
|
{
|
|
|
|
$confDir = $this->getProjectDir().'/config';
|
|
|
|
|
|
|
|
$routes->import($confDir.'/{routes}/*'.self::CONFIG_EXTS, '/', 'glob');
|
|
|
|
$routes->import($confDir.'/{routes}/'.$this->environment.'/**/*'.self::CONFIG_EXTS, '/', 'glob');
|
|
|
|
$routes->import($confDir.'/{routes}'.self::CONFIG_EXTS, '/', 'glob');
|
|
|
|
}
|
|
|
|
}
|