mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-16 14:33:14 +00:00
54 lines
1.9 KiB
PHP
54 lines
1.9 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\Feed\Formatter\AtomFormatter;
|
|
use Alchemy\Phrasea\Feed\Formatter\CoolirisFormatter;
|
|
use Alchemy\Phrasea\Feed\Formatter\RssFormatter;
|
|
use Alchemy\Phrasea\Feed\Link\AggregateLinkGenerator;
|
|
use Alchemy\Phrasea\Feed\Link\FeedLinkGenerator;
|
|
use Alchemy\Phrasea\Feed\Link\LinkGeneratorCollection;
|
|
use Silex\Application;
|
|
use Silex\ServiceProviderInterface;
|
|
|
|
class FeedServiceProvider implements ServiceProviderInterface
|
|
{
|
|
public function register(Application $app)
|
|
{
|
|
$app['feed.user-link-generator'] = $app->share(function($app) {
|
|
return new FeedLinkGenerator($app['url_generator'], $app['EM'], $app['tokens']);
|
|
});
|
|
$app['feed.aggregate-link-generator'] = $app->share(function($app) {
|
|
return new AggregateLinkGenerator($app['url_generator'], $app['EM'], $app['tokens']);
|
|
});
|
|
$app['feed.link-generator-collection'] = $app->share(function($app) {
|
|
$collection = new LinkGeneratorCollection();
|
|
$collection->pushGenerator($app['feed.user-link-generator']);
|
|
$collection->pushGenerator($app['feed.aggregate-link-generator']);
|
|
return $collection;
|
|
});
|
|
$app['feed.rss-formatter'] = $app->share(function($app) {
|
|
return new RssFormatter($app['feed.link-generator-collection']);
|
|
});
|
|
$app['feed.atom-formatter'] = $app->share(function($app) {
|
|
return new AtomFormatter($app['feed.link-generator-collection']);
|
|
});
|
|
$app['feed.cooliris-formatter'] = $app->share(function($app) {
|
|
return new CoolirisFormatter($app['feed.link-generator-collection']);
|
|
});
|
|
}
|
|
|
|
public function boot(Application $app)
|
|
{
|
|
}
|
|
}
|