mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
initial commit
This commit is contained in:
28
cache/atlbiomed/prod/config/config_factories.yml.php
vendored
Normal file
28
cache/atlbiomed/prod/config/config_factories.yml.php
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
<?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',
|
||||
)));
|
||||
}
|
||||
|
Reference in New Issue
Block a user