Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of the Sonata Project package.
|
|
*
|
|
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Sonata\Doctrine\Bridge\Symfony\DependencyInjection;
|
|
|
|
use Doctrine\ODM\PHPCR\DocumentManager;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Symfony\Component\Config\FileLocator;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\DependencyInjection\Loader\PhpFileLoader;
|
|
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
|
|
|
|
/**
|
|
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
|
|
*/
|
|
class SonataDoctrineExtension extends Extension
|
|
{
|
|
/**
|
|
* @param mixed[] $configs
|
|
*
|
|
* @return void
|
|
*/
|
|
public function load(array $configs, ContainerBuilder $container)
|
|
{
|
|
$loader = new PhpFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
|
$loader->load('services.php');
|
|
|
|
if (interface_exists(EntityManagerInterface::class)) {
|
|
$loader->load('doctrine_orm.php');
|
|
$loader->load('mapper_orm.php');
|
|
}
|
|
|
|
$bundles = $container->getParameter('kernel.bundles');
|
|
\assert(\is_array($bundles));
|
|
|
|
// NEXT_MAJOR: Remove this
|
|
if (class_exists(DocumentManager::class) && isset($bundles['DoctrinePHPCRBundle'])) {
|
|
$loader->load('doctrine_phpcr.php');
|
|
}
|
|
}
|
|
}
|