mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
33 lines
1014 B
PHP
33 lines
1014 B
PHP
![]() |
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of the symfony package.
|
||
|
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
|
||
|
*
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @package symfony
|
||
|
* @subpackage addon
|
||
|
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
||
|
* @version SVN: $Id: sfPropelAutoload.php 2808 2006-11-25 07:22:49Z fabien $
|
||
|
*/
|
||
|
require_once 'propel/Propel.php';
|
||
|
|
||
|
if (sfConfig::get('sf_debug') && sfConfig::get('sf_logging_enabled'))
|
||
|
{
|
||
|
// register debug driver
|
||
|
require_once 'creole/Creole.php';
|
||
|
Creole::registerDriver('*', 'symfony.addon.creole.drivers.sfDebugConnection');
|
||
|
|
||
|
// register our logger
|
||
|
require_once(sfConfig::get('sf_symfony_lib_dir').'/addon/creole/drivers/sfDebugConnection.php');
|
||
|
sfDebugConnection::setLogger(sfLogger::getInstance());
|
||
|
}
|
||
|
|
||
|
// propel initialization
|
||
|
Propel::setConfiguration(sfPropelDatabase::getConfiguration());
|
||
|
Propel::initialize();
|