diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2012-11-09 08:48:41 -0600 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2012-11-09 08:48:41 -0600 |
commit | 6c8c54d4d2575cd40fe873cd2108b031ae5830a6 (patch) | |
tree | e2360204a3d9ac191f198e113170a9d26a224a70 /phpBB/config | |
parent | 6a0f6833e61532d28d7bebcc8ad0ec2b2b722e19 (diff) | |
download | forums-6c8c54d4d2575cd40fe873cd2108b031ae5830a6.tar forums-6c8c54d4d2575cd40fe873cd2108b031ae5830a6.tar.gz forums-6c8c54d4d2575cd40fe873cd2108b031ae5830a6.tar.bz2 forums-6c8c54d4d2575cd40fe873cd2108b031ae5830a6.tar.xz forums-6c8c54d4d2575cd40fe873cd2108b031ae5830a6.zip |
[ticket/11103] Inject table prefix to notifications system instead of constants
PHPBB3-11103
Diffstat (limited to 'phpBB/config')
-rw-r--r-- | phpBB/config/notifications.yml | 30 | ||||
-rw-r--r-- | phpBB/config/services.yml | 2 | ||||
-rw-r--r-- | phpBB/config/tables.yml | 2 |
3 files changed, 34 insertions, 0 deletions
diff --git a/phpBB/config/notifications.yml b/phpBB/config/notifications.yml index 78fcd7c2d9..7c8e05494c 100644 --- a/phpBB/config/notifications.yml +++ b/phpBB/config/notifications.yml @@ -12,6 +12,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -28,6 +30,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -44,6 +48,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -60,6 +66,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -76,6 +84,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -92,6 +102,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -108,6 +120,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -124,6 +138,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -140,6 +156,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -156,6 +174,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -172,6 +192,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -188,6 +210,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -204,6 +228,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -220,6 +246,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } @@ -236,6 +264,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% tags: - { name: notification.type } diff --git a/phpBB/config/services.yml b/phpBB/config/services.yml index e780dc986f..cbae3d49dd 100644 --- a/phpBB/config/services.yml +++ b/phpBB/config/services.yml @@ -103,6 +103,8 @@ services: - @config - %core.root_path% - %core.php_ext% + - %tables.notifications% + - %tables.user_notifications% processor.ext: class: phpbb_di_processor_ext diff --git a/phpBB/config/tables.yml b/phpBB/config/tables.yml index cfc6dbcfed..8791c5e89b 100644 --- a/phpBB/config/tables.yml +++ b/phpBB/config/tables.yml @@ -1,3 +1,5 @@ parameters: tables.config: %core.table_prefix%config tables.ext: %core.table_prefix%ext + tables.notifications: %core.table_prefix%notifications + tables.user_notifications: %core.table_prefix%user_notifications |