mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-08 10:34:34 +00:00
42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2014 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\Application;
|
|
use Alchemy\Phrasea\Media\SubdefSubstituer;
|
|
use Silex\Application as SilexApplication;
|
|
use Silex\ServiceProviderInterface;
|
|
use Alchemy\Phrasea\Media\SubdefGenerator;
|
|
|
|
class SubdefServiceProvider implements ServiceProviderInterface
|
|
{
|
|
public function register(SilexApplication $app)
|
|
{
|
|
$app['subdef.generator'] = $app->share(function (Application $app) {
|
|
$generator = new SubdefGenerator($app, $app['media-alchemyst'], $app['phraseanet.filesystem'], $app['mediavorus'], isset($app['task-manager.logger']) ? $app['task-manager.logger'] : $app['monolog']);
|
|
$generator->setDispatcher($app['dispatcher']);
|
|
|
|
return $generator;
|
|
});
|
|
$app['subdef.substituer'] = $app->share(function (Application $app) {
|
|
return new SubdefSubstituer($app, $app['phraseanet.filesystem'], $app['media-alchemyst'], $app['mediavorus'], $app['dispatcher']);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function boot(SilexApplication $app)
|
|
{
|
|
}
|
|
}
|