aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/services.yml
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-09-29 12:13:17 +0200
committerTristan Darricau <github@nicofuma.fr>2014-10-03 00:32:08 +0200
commitebaec047f271a5304162795ea388cc699c7e90b7 (patch)
tree8c71c914f6d26b56a179826075ef5c64827ffa19 /phpBB/config/services.yml
parent240ff277070844a11bc541c750818af568960d20 (diff)
downloadforums-ebaec047f271a5304162795ea388cc699c7e90b7.tar
forums-ebaec047f271a5304162795ea388cc699c7e90b7.tar.gz
forums-ebaec047f271a5304162795ea388cc699c7e90b7.tar.bz2
forums-ebaec047f271a5304162795ea388cc699c7e90b7.tar.xz
forums-ebaec047f271a5304162795ea388cc699c7e90b7.zip
[ticket/12987] Cleanup the services.yml file
PHPBB3-12987
Diffstat (limited to 'phpBB/config/services.yml')
-rw-r--r--phpBB/config/services.yml212
1 files changed, 15 insertions, 197 deletions
diff --git a/phpBB/config/services.yml b/phpBB/config/services.yml
index d32b665039..5003697564 100644
--- a/phpBB/config/services.yml
+++ b/phpBB/config/services.yml
@@ -1,34 +1,23 @@
imports:
- - { resource: tables.yml }
- - { resource: cron_tasks.yml }
- - { resource: notifications.yml }
- - { resource: migrator.yml }
- - { resource: avatars.yml }
- - { resource: feed.yml }
- - { resource: auth_providers.yml }
- - { resource: console.yml }
- - { resource: mimetype_guessers.yml }
- - { resource: passwords.yml }
- - { resource: profilefields.yml }
+ - { resource: auth.yml }
+ - { resource: avatar.yml }
- { resource: captcha.yml }
+ - { resource: console.yml }
+ - { resource: content.yml }
+ - { resource: cron.yml }
+ - { resource: db.yml }
+ - { resource: event.yml }
+ - { resource: feed.yml }
+ - { resource: mimetype_guesser.yml }
+ - { resource: notification.yml }
+ - { resource: password.yml }
+ - { resource: profilefield.yml }
+ - { resource: user.yml }
+
+ - { resource: tables.yml }
- { resource: parameters.yml }
services:
- acl.permissions:
- class: phpbb\permissions
- arguments:
- - @dispatcher
- - @user
-
- auth:
- class: phpbb\auth\auth
-
- avatar.manager:
- class: phpbb\avatar\manager
- arguments:
- - @config
- - @avatar.driver_collection
-
cache:
class: phpbb\cache\service
arguments:
@@ -77,20 +66,6 @@ services:
- @dbal.conn
- %tables.config_text%
- content.visibility:
- class: phpbb\content_visibility
- arguments:
- - @auth
- - @config
- - @dbal.conn
- - @user
- - %core.root_path%
- - %core.php_ext%
- - %tables.forums%
- - %tables.posts%
- - %tables.topics%
- - %tables.users%
-
controller.helper:
class: phpbb\controller\helper
arguments:
@@ -117,47 +92,6 @@ services:
calls:
- [find, [%core.root_path%]]
- cron.task_collection:
- class: phpbb\di\service_collection
- arguments:
- - @service_container
- tags:
- - { name: service_collection, tag: cron.task }
-
- cron.manager:
- class: phpbb\cron\manager
- arguments:
- - @cron.task_collection
- - %core.root_path%
- - %core.php_ext%
-
- cron.lock_db:
- class: phpbb\lock\db
- arguments:
- - cron_lock
- - @config
- - @dbal.conn
-
- dispatcher:
- class: phpbb\event\dispatcher
- arguments:
- - @service_container
-
- dbal.conn:
- class: phpbb\db\driver\factory
- arguments:
- - @service_container
-
- dbal.conn.driver:
- class: %dbal.driver.class%
- calls:
- - [sql_connect, [%dbal.dbhost%, %dbal.dbuser%, %dbal.dbpasswd%, %dbal.dbname%, %dbal.dbport%, false, %dbal.new_link%]]
-
- dbal.tools:
- class: phpbb\db\tools
- arguments:
- - @dbal.conn
-
ext.manager:
class: phpbb\extension\manager
arguments:
@@ -174,54 +108,12 @@ services:
filesystem:
class: phpbb\filesystem
- groupposition.legend:
- class: phpbb\groupposition\legend
- arguments:
- - @dbal.conn
- - @user
-
- groupposition.teampage:
- class: phpbb\groupposition\teampage
- arguments:
- - @dbal.conn
- - @user
- - @cache.driver
-
http_kernel:
class: Symfony\Component\HttpKernel\HttpKernel
arguments:
- @dispatcher
- @controller.resolver
- hook_finder:
- class: phpbb\hook\finder
- arguments:
- - %core.root_path%
- - %core.php_ext%
- - @cache.driver
-
- kernel_request_subscriber:
- class: phpbb\event\kernel_request_subscriber
- arguments:
- - @ext.manager
- - %core.root_path%
- - %core.php_ext%
- tags:
- - { name: kernel.event_subscriber }
-
- kernel_exception_subscriber:
- class: phpbb\event\kernel_exception_subscriber
- arguments:
- - @template
- - @user
- tags:
- - { name: kernel.event_subscriber }
-
- kernel_terminate_subscriber:
- class: phpbb\event\kernel_terminate_subscriber
- tags:
- - { name: kernel.event_subscriber }
-
log:
class: phpbb\log\log
arguments:
@@ -234,62 +126,6 @@ services:
- %core.php_ext%
- %tables.log%
- message.form.admin:
- class: phpbb\message\admin_form
- arguments:
- - @auth
- - @config
- - @config_text
- - @dbal.conn
- - @user
- - %core.root_path%
- - %core.php_ext%
-
- message.form.topic:
- class: phpbb\message\topic_form
- arguments:
- - @auth
- - @config
- - @dbal.conn
- - @user
- - %core.root_path%
- - %core.php_ext%
-
- message.form.user:
- class: phpbb\message\user_form
- arguments:
- - @auth
- - @config
- - @dbal.conn
- - @user
- - %core.root_path%
- - %core.php_ext%
-
- notification_manager:
- class: phpbb\notification\manager
- arguments:
- - @notification.type_collection
- - @notification.method_collection
- - @service_container
- - @user_loader
- - @config
- - @dbal.conn
- - @cache
- - @user
- - %core.root_path%
- - %core.php_ext%
- - %tables.notification_types%
- - %tables.notifications%
- - %tables.user_notifications%
-
- pagination:
- class: phpbb\pagination
- arguments:
- - @template
- - @user
- - @controller.helper
- - @dispatcher
-
path_helper:
class: phpbb\path_helper
arguments:
@@ -336,19 +172,6 @@ services:
template_context:
class: phpbb\template\context
- user:
- class: phpbb\user
- arguments:
- - %datetime.class%
-
- user_loader:
- class: phpbb\user_loader
- arguments:
- - @dbal.conn
- - %core.root_path%
- - %core.php_ext%
- - %tables.users%
-
version_helper:
class: phpbb\version_helper
scope: prototype
@@ -356,8 +179,3 @@ services:
- @cache
- @config
- @user
-
- viewonline_helper:
- class: phpbb\viewonline_helper
- arguments:
- - @filesystem