propel-bundle/PropelBundle.php

68 lines
1.9 KiB
PHP
Raw Normal View History

2013-06-09 00:19:30 +02:00
<?php
/**
* This file is part of the PropelBundle package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
namespace Propel\PropelBundle;
use Propel\Runtime\Propel;
use Propel\Runtime\Connection\ConnectionManagerSingle;
2013-10-31 22:46:54 +01:00
use Propel\Runtime\Connection\ConnectionManagerMasterSlave;
2013-06-09 00:19:30 +02:00
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
/**
* PropelBundle
*
* @author William DURAND <william.durand1@gmail.com>
*/
class PropelBundle extends Bundle
{
/**
* {@inheritdoc}
*/
2013-06-09 00:19:30 +02:00
public function boot()
{
$this->configureConnections();
2013-06-09 00:19:30 +02:00
}
/**
* {@inheritdoc}
*/
2013-06-09 00:19:30 +02:00
public function build(ContainerBuilder $container)
{
}
protected function configureConnections()
{
$connections_config = $this->container->getParameter('propel.configuration');
$default_datasource = $this->container->getParameter('propel.dbal.default_connection');
$serviceContainer = Propel::getServiceContainer();
$serviceContainer->setDefaultDatasource($default_datasource);
foreach ($connections_config as $name => $config) {
2013-10-31 22:46:54 +01:00
if (isset($config['slaves'])) {
$manager = new ConnectionManagerMasterSlave();
// configure the master (write) connection
$manager->setWriteConfiguration($config['connection']);
// configure the slave (read) connections
$manager->setReadConfiguration($config['slaves']);
} else {
$manager = new ConnectionManagerSingle();
$manager->setConfiguration($config['connection']);
}
$serviceContainer->setAdapterClass($name, $config['adapter']);
$serviceContainer->setConnectionManager($name, $manager);
}
}
2013-06-09 00:19:30 +02:00
}