mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-08 10:34:34 +00:00
51 lines
1.5 KiB
PHP
51 lines
1.5 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\Model\Converter\ApiApplicationConverter;
|
|
use Alchemy\Phrasea\Model\Converter\BasketConverter;
|
|
use Alchemy\Phrasea\Model\Converter\TaskConverter;
|
|
use Alchemy\Phrasea\Model\Converter\TokenConverter;
|
|
use Alchemy\Phrasea\Model\Entities\Task;
|
|
use Silex\Application;
|
|
use Silex\ServiceProviderInterface;
|
|
|
|
class ConvertersServiceProvider implements ServiceProviderInterface
|
|
{
|
|
public function register(Application $app)
|
|
{
|
|
$app['converter.task'] = $app->share(function ($app) {
|
|
return new TaskConverter($app['repo.tasks']);
|
|
});
|
|
|
|
$app['converter.task-callback'] = $app->protect(function ($id) use ($app) {
|
|
return $app['converter.task']->convert($id);
|
|
});
|
|
|
|
$app['converter.basket'] = $app->share(function ($app) {
|
|
return new BasketConverter($app['repo.baskets']);
|
|
});
|
|
|
|
$app['converter.token'] = $app->share(function ($app) {
|
|
return new TokenConverter($app['repo.tokens']);
|
|
});
|
|
|
|
$app['converter.api-application'] = $app->share(function ($app) {
|
|
return new ApiApplicationConverter($app['repo.api-applications']);
|
|
});
|
|
}
|
|
|
|
public function boot(Application $app)
|
|
{
|
|
}
|
|
}
|