Files
portal-legacy/cache/atlbiomed/prod/config/config_factories.yml.php

29 lines
1.5 KiB
PHP
Raw Permalink Normal View History

2012-11-28 03:55:08 -05:00
<?php
// auto-generated by sfFactoryConfigHandler
// date: 2012/06/11 14:35:44
$this->controller = sfController::newInstance(sfConfig::get('sf_factory_controller', 'sfFrontWebController'));
$this->request = sfRequest::newInstance(sfConfig::get('sf_factory_request', 'sfWebRequest'));
$this->response = sfResponse::newInstance(sfConfig::get('sf_factory_response', 'sfWebResponse'));
$this->storage = sfStorage::newInstance(sfConfig::get('sf_factory_storage', 'sfMySQLSessionStorage'));
$this->user = sfUser::newInstance(sfConfig::get('sf_factory_user', 'AtlanticBiomedicalUser'));
$this->controller->initialize($this);
$this->request->initialize($this, sfConfig::get('sf_factory_request_parameters', NULL), sfConfig::get('sf_factory_request_attributes', array()));
$this->response->initialize($this, sfConfig::get('sf_factory_response_parameters', NULL));
$this->storage->initialize($this, sfConfig::get('sf_factory_storage_parameters', array (
'session_name' => 'symfony',
'db_table' => 'sessions',
'database' => 'sessions_db',
)));
$this->user->initialize($this, sfConfig::get('sf_factory_user_parameters', NULL));
if (sfConfig::get('sf_cache'))
{
$this->viewCacheManager = new sfViewCacheManager();
$this->viewCacheManager->initialize($this, sfConfig::get('sf_factory_view_cache', 'sfFileCache'), sfConfig::get('sf_factory_view_cache_parameters', array (
'automaticCleaningFactor' => 0,
'cacheDir' => '/var/www/portal.atlanticbiomedical.com/cache/atlbiomed/prod/template',
)));
}