2013-06-06 20:04:23 +02:00
|
|
|
services:
|
|
|
|
feed.helper:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\feed\helper
|
2013-06-06 20:04:23 +02:00
|
|
|
arguments:
|
|
|
|
- @config
|
|
|
|
- @user
|
|
|
|
- %core.root_path%
|
2013-12-27 03:43:22 +05:30
|
|
|
- %core.php_ext%
|
2013-06-06 20:04:23 +02:00
|
|
|
|
|
|
|
feed.factory:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\feed\factory
|
2013-06-06 20:04:23 +02:00
|
|
|
arguments:
|
|
|
|
- @service_container
|
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
|
|
|
|
feed.forum:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\feed\forum
|
2013-06-06 20:04:23 +02:00
|
|
|
scope: prototype
|
|
|
|
arguments:
|
|
|
|
- @feed.helper
|
2013-06-06 20:32:47 +02:00
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
2013-07-11 14:24:07 +02:00
|
|
|
- @content.visibility
|
2013-06-06 20:32:47 +02:00
|
|
|
- %core.php_ext%
|
2013-06-06 20:04:23 +02:00
|
|
|
|
|
|
|
feed.forums:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\feed\forums
|
2013-06-06 20:04:23 +02:00
|
|
|
scope: prototype
|
|
|
|
arguments:
|
|
|
|
- @feed.helper
|
2013-06-06 20:32:47 +02:00
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
2013-07-11 14:24:07 +02:00
|
|
|
- @content.visibility
|
2013-06-06 20:32:47 +02:00
|
|
|
- %core.php_ext%
|
2013-06-06 20:04:23 +02:00
|
|
|
|
|
|
|
feed.news:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\feed\news
|
2013-06-06 20:04:23 +02:00
|
|
|
scope: prototype
|
|
|
|
arguments:
|
|
|
|
- @feed.helper
|
2013-06-06 20:32:47 +02:00
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
2013-07-11 14:24:07 +02:00
|
|
|
- @content.visibility
|
2013-06-06 20:32:47 +02:00
|
|
|
- %core.php_ext%
|
2013-06-06 20:04:23 +02:00
|
|
|
|
|
|
|
feed.overall:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\feed\overall
|
2013-06-06 20:04:23 +02:00
|
|
|
scope: prototype
|
|
|
|
arguments:
|
|
|
|
- @feed.helper
|
2013-06-06 20:32:47 +02:00
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
2013-07-11 14:24:07 +02:00
|
|
|
- @content.visibility
|
2013-06-06 20:32:47 +02:00
|
|
|
- %core.php_ext%
|
2013-06-06 20:04:23 +02:00
|
|
|
|
|
|
|
feed.topic:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\feed\topic
|
2013-06-06 20:04:23 +02:00
|
|
|
scope: prototype
|
|
|
|
arguments:
|
|
|
|
- @feed.helper
|
2013-06-06 20:32:47 +02:00
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
2013-07-11 14:24:07 +02:00
|
|
|
- @content.visibility
|
2013-06-06 20:32:47 +02:00
|
|
|
- %core.php_ext%
|
2013-06-06 20:04:23 +02:00
|
|
|
|
|
|
|
feed.topics:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\feed\topics
|
2013-06-06 20:04:23 +02:00
|
|
|
scope: prototype
|
|
|
|
arguments:
|
|
|
|
- @feed.helper
|
2013-06-06 20:32:47 +02:00
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
2013-07-11 14:24:07 +02:00
|
|
|
- @content.visibility
|
2013-06-06 20:32:47 +02:00
|
|
|
- %core.php_ext%
|
2013-06-06 20:04:23 +02:00
|
|
|
|
|
|
|
feed.topics_active:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\feed\topics_active
|
2013-06-06 20:04:23 +02:00
|
|
|
scope: prototype
|
|
|
|
arguments:
|
|
|
|
- @feed.helper
|
2013-06-06 20:32:47 +02:00
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
2013-07-11 14:24:07 +02:00
|
|
|
- @content.visibility
|
2013-06-06 20:32:47 +02:00
|
|
|
- %core.php_ext%
|