| 86 | | $extract = new sfI18nApplicationExtract(new sfI18N($this->configuration, new sfNoCache()), $arguments['culture']); |
|---|
| | 86 | // get i18n configuration from factories.yml |
|---|
| | 87 | $config = sfFactoryConfigHandler::getConfiguration($this->configuration->getConfigPaths('config/factories.yml')); |
|---|
| | 88 | |
|---|
| | 89 | $class = $config['i18n']['class']; |
|---|
| | 90 | $params = $config['i18n']['param']; |
|---|
| | 91 | unset($params['cache']); |
|---|
| | 92 | |
|---|
| | 93 | $extract = new sfI18nApplicationExtract(new $class($this->configuration, new sfNoCache(), $params), $arguments['culture']); |
|---|