mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 19:13:26 +00:00
61 lines
1.8 KiB
PHP
61 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2013 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Core\Provider;
|
|
|
|
use Alchemy\Phrasea\Cache\Manager as CacheManager;
|
|
use Silex\Application;
|
|
use Silex\ServiceProviderInterface;
|
|
use Alchemy\Phrasea\Core\Configuration\Compiler;
|
|
use Alchemy\Phrasea\Cache\Factory;
|
|
|
|
class CacheServiceProvider implements ServiceProviderInterface
|
|
{
|
|
|
|
public function register(Application $app)
|
|
{
|
|
$app['phraseanet.cache-registry'] = __DIR__ . '/../../../../../tmp/cache_registry.php';
|
|
|
|
$app['phraseanet.cache-compiler'] = $app->share(function () {
|
|
return new Compiler();
|
|
});
|
|
|
|
$app['phraseanet.cache-factory'] = $app->share(function () {
|
|
return new Factory();
|
|
});
|
|
|
|
$app['phraseanet.cache-service'] = $app->share(function(Application $app) {
|
|
return new CacheManager(
|
|
$app['phraseanet.cache-compiler'],
|
|
$app['phraseanet.cache-registry'],
|
|
$app['monolog'],
|
|
$app['phraseanet.cache-factory']
|
|
);
|
|
});
|
|
|
|
$app['cache'] = $app->share(function(Application $app) {
|
|
$conf = $app['phraseanet.configuration']['main']['cache'];
|
|
|
|
return $app['phraseanet.cache-service']->factory('cache', $conf['type'], $conf['options']);
|
|
});
|
|
|
|
$app['opcode-cache'] = $app->share(function(Application $app) {
|
|
$conf = $app['phraseanet.configuration']['main']['opcodecache'];
|
|
|
|
return $app['phraseanet.cache-service']->factory('cache', $conf['type'], $conf['options']);
|
|
});
|
|
}
|
|
|
|
public function boot(Application $app)
|
|
{
|
|
}
|
|
}
|