From fffb07fd91b42d64e71e16a13bcdde87114fad19 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 11 Apr 2014 18:09:25 +0200 Subject: [ticket/10073] Use namespaces and fix all class names PHPBB3-10073 --- phpBB/config/services.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'phpBB/config') diff --git a/phpBB/config/services.yml b/phpBB/config/services.yml index 4de47f750f..11a13c6b5f 100644 --- a/phpBB/config/services.yml +++ b/phpBB/config/services.yml @@ -238,6 +238,36 @@ services: - %core.php_ext% - %tables.log% + message.form.admin: + class: phpbb\message\admin_form + arguments: + - @auth + - @config + - @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: -- cgit v1.2.1 From ef8d7b995e854c64a5f529978ee4898030ae9fa4 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Sun, 13 Apr 2014 23:46:28 +0200 Subject: [ticket/10073] Add @config_text to admin_form PHPBB3-10073 --- phpBB/config/services.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'phpBB/config') diff --git a/phpBB/config/services.yml b/phpBB/config/services.yml index 11a13c6b5f..791981854c 100644 --- a/phpBB/config/services.yml +++ b/phpBB/config/services.yml @@ -253,6 +253,7 @@ services: arguments: - @auth - @config + - @config_text - @dbal.conn - @user - %core.root_path% -- cgit v1.2.1 From e2e7e2a55bffc709ac690c0130fed2bc33dd1b07 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 20 May 2014 21:32:17 +0200 Subject: [ticket/10073] Move config values to config_text PHPBB3-10073 --- phpBB/config/services.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'phpBB/config') diff --git a/phpBB/config/services.yml b/phpBB/config/services.yml index 791981854c..3c913f347c 100644 --- a/phpBB/config/services.yml +++ b/phpBB/config/services.yml @@ -243,6 +243,7 @@ services: arguments: - @auth - @config + - @config_text - @dbal.conn - @user - %core.root_path% -- cgit v1.2.1