mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-19 15:17:16 +01:00
99d312da2a
* ticket/11271: [ticket/11271] Make path conversion more precise Conflicts: phpBB/feed.php
107 lines
2.4 KiB
YAML
107 lines
2.4 KiB
YAML
services:
|
|
feed.helper:
|
|
class: phpbb\feed\helper
|
|
arguments:
|
|
- @config
|
|
- @user
|
|
- %core.root_path%
|
|
- %core.php_ext%
|
|
|
|
feed.factory:
|
|
class: phpbb\feed\factory
|
|
arguments:
|
|
- @service_container
|
|
- @config
|
|
- @dbal.conn
|
|
|
|
feed.forum:
|
|
class: phpbb\feed\forum
|
|
scope: prototype
|
|
arguments:
|
|
- @feed.helper
|
|
- @config
|
|
- @dbal.conn
|
|
- @cache.driver
|
|
- @user
|
|
- @auth
|
|
- @content.visibility
|
|
- %core.php_ext%
|
|
|
|
feed.forums:
|
|
class: phpbb\feed\forums
|
|
scope: prototype
|
|
arguments:
|
|
- @feed.helper
|
|
- @config
|
|
- @dbal.conn
|
|
- @cache.driver
|
|
- @user
|
|
- @auth
|
|
- @content.visibility
|
|
- %core.php_ext%
|
|
|
|
feed.news:
|
|
class: phpbb\feed\news
|
|
scope: prototype
|
|
arguments:
|
|
- @feed.helper
|
|
- @config
|
|
- @dbal.conn
|
|
- @cache.driver
|
|
- @user
|
|
- @auth
|
|
- @content.visibility
|
|
- %core.php_ext%
|
|
|
|
feed.overall:
|
|
class: phpbb\feed\overall
|
|
scope: prototype
|
|
arguments:
|
|
- @feed.helper
|
|
- @config
|
|
- @dbal.conn
|
|
- @cache.driver
|
|
- @user
|
|
- @auth
|
|
- @content.visibility
|
|
- %core.php_ext%
|
|
|
|
feed.topic:
|
|
class: phpbb\feed\topic
|
|
scope: prototype
|
|
arguments:
|
|
- @feed.helper
|
|
- @config
|
|
- @dbal.conn
|
|
- @cache.driver
|
|
- @user
|
|
- @auth
|
|
- @content.visibility
|
|
- %core.php_ext%
|
|
|
|
feed.topics:
|
|
class: phpbb\feed\topics
|
|
scope: prototype
|
|
arguments:
|
|
- @feed.helper
|
|
- @config
|
|
- @dbal.conn
|
|
- @cache.driver
|
|
- @user
|
|
- @auth
|
|
- @content.visibility
|
|
- %core.php_ext%
|
|
|
|
feed.topics_active:
|
|
class: phpbb\feed\topics_active
|
|
scope: prototype
|
|
arguments:
|
|
- @feed.helper
|
|
- @config
|
|
- @dbal.conn
|
|
- @cache.driver
|
|
- @user
|
|
- @auth
|
|
- @content.visibility
|
|
- %core.php_ext%
|