mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/12620] Split the environments into differents folders
PHPBB3-12620
This commit is contained in:
parent
943e27dffa
commit
8664d3229a
30 changed files with 976 additions and 5 deletions
86
phpBB/config/default/services_auth_providers.yml
Normal file
86
phpBB/config/default/services_auth_providers.yml
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
services:
|
||||||
|
auth.provider_collection:
|
||||||
|
class: phpbb\auth\provider_collection
|
||||||
|
arguments:
|
||||||
|
- @service_container
|
||||||
|
- @config
|
||||||
|
tags:
|
||||||
|
- { name: service_collection, tag: auth.provider }
|
||||||
|
auth.provider.db:
|
||||||
|
class: phpbb\auth\provider\db
|
||||||
|
arguments:
|
||||||
|
- @dbal.conn
|
||||||
|
- @config
|
||||||
|
- @passwords.manager
|
||||||
|
- @request
|
||||||
|
- @user
|
||||||
|
- @service_container
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
tags:
|
||||||
|
- { name: auth.provider }
|
||||||
|
auth.provider.apache:
|
||||||
|
class: phpbb\auth\provider\apache
|
||||||
|
arguments:
|
||||||
|
- @dbal.conn
|
||||||
|
- @config
|
||||||
|
- @passwords.manager
|
||||||
|
- @request
|
||||||
|
- @user
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
tags:
|
||||||
|
- { name: auth.provider }
|
||||||
|
auth.provider.ldap:
|
||||||
|
class: phpbb\auth\provider\ldap
|
||||||
|
arguments:
|
||||||
|
- @dbal.conn
|
||||||
|
- @config
|
||||||
|
- @passwords.manager
|
||||||
|
- @user
|
||||||
|
tags:
|
||||||
|
- { name: auth.provider }
|
||||||
|
auth.provider.oauth:
|
||||||
|
class: phpbb\auth\provider\oauth\oauth
|
||||||
|
arguments:
|
||||||
|
- @dbal.conn
|
||||||
|
- @config
|
||||||
|
- @passwords.manager
|
||||||
|
- @request
|
||||||
|
- @user
|
||||||
|
- %tables.auth_provider_oauth_token_storage%
|
||||||
|
- %tables.auth_provider_oauth_account_assoc%
|
||||||
|
- @auth.provider.oauth.service_collection
|
||||||
|
- %tables.users%
|
||||||
|
- @service_container
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
tags:
|
||||||
|
- { name: auth.provider }
|
||||||
|
auth.provider.oauth.service_collection:
|
||||||
|
class: phpbb\di\service_collection
|
||||||
|
arguments:
|
||||||
|
- @service_container
|
||||||
|
tags:
|
||||||
|
- { name: service_collection, tag: auth.provider.oauth.service }
|
||||||
|
auth.provider.oauth.service.bitly:
|
||||||
|
class: phpbb\auth\provider\oauth\service\bitly
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @request
|
||||||
|
tags:
|
||||||
|
- { name: auth.provider.oauth.service }
|
||||||
|
auth.provider.oauth.service.facebook:
|
||||||
|
class: phpbb\auth\provider\oauth\service\facebook
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @request
|
||||||
|
tags:
|
||||||
|
- { name: auth.provider.oauth.service }
|
||||||
|
auth.provider.oauth.service.google:
|
||||||
|
class: phpbb\auth\provider\oauth\service\google
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @request
|
||||||
|
tags:
|
||||||
|
- { name: auth.provider.oauth.service }
|
60
phpBB/config/default/services_avatars.yml
Normal file
60
phpBB/config/default/services_avatars.yml
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
services:
|
||||||
|
avatar.driver.gravatar:
|
||||||
|
class: phpbb\avatar\driver\gravatar
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @path_helper
|
||||||
|
- @cache.driver
|
||||||
|
calls:
|
||||||
|
- [set_name, [avatar.driver.gravatar]]
|
||||||
|
tags:
|
||||||
|
- { name: avatar.driver }
|
||||||
|
|
||||||
|
avatar.driver.local:
|
||||||
|
class: phpbb\avatar\driver\local
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @path_helper
|
||||||
|
- @cache.driver
|
||||||
|
calls:
|
||||||
|
- [set_name, [avatar.driver.local]]
|
||||||
|
tags:
|
||||||
|
- { name: avatar.driver }
|
||||||
|
|
||||||
|
avatar.driver.remote:
|
||||||
|
class: phpbb\avatar\driver\remote
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @path_helper
|
||||||
|
- @cache.driver
|
||||||
|
calls:
|
||||||
|
- [set_name, [avatar.driver.remote]]
|
||||||
|
tags:
|
||||||
|
- { name: avatar.driver }
|
||||||
|
|
||||||
|
avatar.driver.upload:
|
||||||
|
class: phpbb\avatar\driver\upload
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @path_helper
|
||||||
|
- @mimetype.guesser
|
||||||
|
- @cache.driver
|
||||||
|
calls:
|
||||||
|
- [set_name, [avatar.driver.upload]]
|
||||||
|
tags:
|
||||||
|
- { name: avatar.driver }
|
||||||
|
|
||||||
|
avatar.driver_collection:
|
||||||
|
class: phpbb\di\service_collection
|
||||||
|
arguments:
|
||||||
|
- @service_container
|
||||||
|
tags:
|
||||||
|
- { name: service_collection, tag: avatar.driver }
|
125
phpBB/config/default/services_cron_tasks.yml
Normal file
125
phpBB/config/default/services_cron_tasks.yml
Normal file
|
@ -0,0 +1,125 @@
|
||||||
|
services:
|
||||||
|
cron.task.core.prune_all_forums:
|
||||||
|
class: phpbb\cron\task\core\prune_all_forums
|
||||||
|
arguments:
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @config
|
||||||
|
- @dbal.conn
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.prune_all_forums]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
||||||
|
|
||||||
|
cron.task.core.prune_forum:
|
||||||
|
class: phpbb\cron\task\core\prune_forum
|
||||||
|
arguments:
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @config
|
||||||
|
- @dbal.conn
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.prune_forum]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
||||||
|
|
||||||
|
cron.task.core.prune_shadow_topics:
|
||||||
|
class: phpbb\cron\task\core\prune_shadow_topics
|
||||||
|
arguments:
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @config
|
||||||
|
- @dbal.conn
|
||||||
|
- @log
|
||||||
|
- @user
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.prune_shadow_topics]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
||||||
|
|
||||||
|
cron.task.core.prune_notifications:
|
||||||
|
class: phpbb\cron\task\core\prune_notifications
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @notification_manager
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.prune_notifications]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
||||||
|
|
||||||
|
cron.task.core.queue:
|
||||||
|
class: phpbb\cron\task\core\queue
|
||||||
|
arguments:
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @config
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.queue]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
||||||
|
|
||||||
|
cron.task.core.tidy_cache:
|
||||||
|
class: phpbb\cron\task\core\tidy_cache
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @cache.driver
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.tidy_cache]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
||||||
|
|
||||||
|
cron.task.core.tidy_database:
|
||||||
|
class: phpbb\cron\task\core\tidy_database
|
||||||
|
arguments:
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @config
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.tidy_database]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
||||||
|
|
||||||
|
cron.task.core.tidy_plupload:
|
||||||
|
class: phpbb\cron\task\core\tidy_plupload
|
||||||
|
arguments:
|
||||||
|
- %core.root_path%
|
||||||
|
- @config
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.tidy_plupload]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
||||||
|
|
||||||
|
cron.task.core.tidy_search:
|
||||||
|
class: phpbb\cron\task\core\tidy_search
|
||||||
|
arguments:
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- @dbal.conn
|
||||||
|
- @user
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.tidy_search]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
||||||
|
|
||||||
|
cron.task.core.tidy_sessions:
|
||||||
|
class: phpbb\cron\task\core\tidy_sessions
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @user
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.tidy_sessions]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
||||||
|
|
||||||
|
cron.task.core.tidy_warnings:
|
||||||
|
class: phpbb\cron\task\core\tidy_warnings
|
||||||
|
arguments:
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- @config
|
||||||
|
calls:
|
||||||
|
- [set_name, [cron.task.core.tidy_warnings]]
|
||||||
|
tags:
|
||||||
|
- { name: cron.task }
|
60
phpBB/config/default/services_migrator.yml
Normal file
60
phpBB/config/default/services_migrator.yml
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
services:
|
||||||
|
migrator:
|
||||||
|
class: phpbb\db\migrator
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @dbal.conn
|
||||||
|
- @dbal.tools
|
||||||
|
- %tables.migrations%
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %core.table_prefix%
|
||||||
|
- @migrator.tool_collection
|
||||||
|
- @migrator.helper
|
||||||
|
|
||||||
|
migrator.helper:
|
||||||
|
class: phpbb\db\migration\helper
|
||||||
|
|
||||||
|
migrator.tool_collection:
|
||||||
|
class: phpbb\di\service_collection
|
||||||
|
arguments:
|
||||||
|
- @service_container
|
||||||
|
tags:
|
||||||
|
- { name: service_collection, tag: migrator.tool }
|
||||||
|
|
||||||
|
migrator.tool.config:
|
||||||
|
class: phpbb\db\migration\tool\config
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
tags:
|
||||||
|
- { name: migrator.tool }
|
||||||
|
|
||||||
|
migrator.tool.config_text:
|
||||||
|
class: phpbb\db\migration\tool\config_text
|
||||||
|
arguments:
|
||||||
|
- @config_text
|
||||||
|
tags:
|
||||||
|
- { name: migrator.tool }
|
||||||
|
|
||||||
|
migrator.tool.module:
|
||||||
|
class: phpbb\db\migration\tool\module
|
||||||
|
arguments:
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache
|
||||||
|
- @user
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.modules%
|
||||||
|
tags:
|
||||||
|
- { name: migrator.tool }
|
||||||
|
|
||||||
|
migrator.tool.permission:
|
||||||
|
class: phpbb\db\migration\tool\permission
|
||||||
|
arguments:
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache
|
||||||
|
- @auth
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
tags:
|
||||||
|
- { name: migrator.tool }
|
43
phpBB/config/default/services_mimetype_guessers.yml
Normal file
43
phpBB/config/default/services_mimetype_guessers.yml
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
parameters:
|
||||||
|
mimetype.guesser.priority.lowest: -2
|
||||||
|
mimetype.guesser.priority.low: -1
|
||||||
|
mimetype.guesser.priority.default: 0
|
||||||
|
mimetype.guesser.priority.high: 1
|
||||||
|
mimetype.guesser.priority.highest: 2
|
||||||
|
|
||||||
|
services:
|
||||||
|
mimetype.fileinfo_mimetype_guesser:
|
||||||
|
class: Symfony\Component\HttpFoundation\File\MimeType\FileinfoMimeTypeGuesser
|
||||||
|
tags:
|
||||||
|
- { name: mimetype.guessers }
|
||||||
|
|
||||||
|
mimetype.filebinary_mimetype_guesser:
|
||||||
|
class: Symfony\Component\HttpFoundation\File\MimeType\FileBinaryMimeTypeGuesser
|
||||||
|
tags:
|
||||||
|
- { name: mimetype.guessers }
|
||||||
|
|
||||||
|
mimetype.content_guesser:
|
||||||
|
class: phpbb\mimetype\content_guesser
|
||||||
|
calls:
|
||||||
|
- [set_priority, [%mimetype.guesser.priority.low%]]
|
||||||
|
tags:
|
||||||
|
- { name: mimetype.guessers }
|
||||||
|
|
||||||
|
mimetype.extension_guesser:
|
||||||
|
class: phpbb\mimetype\extension_guesser
|
||||||
|
calls:
|
||||||
|
- [set_priority, [%mimetype.guesser.priority.lowest%]]
|
||||||
|
tags:
|
||||||
|
- { name: mimetype.guessers }
|
||||||
|
|
||||||
|
mimetype.guesser_collection:
|
||||||
|
class: phpbb\di\service_collection
|
||||||
|
arguments:
|
||||||
|
- @service_container
|
||||||
|
tags:
|
||||||
|
- { name: service_collection, tag: mimetype.guessers }
|
||||||
|
|
||||||
|
mimetype.guesser:
|
||||||
|
class: phpbb\mimetype\guesser
|
||||||
|
arguments:
|
||||||
|
- @mimetype.guesser_collection
|
368
phpBB/config/default/services_notifications.yml
Normal file
368
phpBB/config/default/services_notifications.yml
Normal file
|
@ -0,0 +1,368 @@
|
||||||
|
services:
|
||||||
|
notification.type_collection:
|
||||||
|
class: phpbb\di\service_collection
|
||||||
|
arguments:
|
||||||
|
- @service_container
|
||||||
|
tags:
|
||||||
|
- { name: service_collection, tag: notification.type }
|
||||||
|
|
||||||
|
notification.method_collection:
|
||||||
|
class: phpbb\di\service_collection
|
||||||
|
arguments:
|
||||||
|
- @service_container
|
||||||
|
tags:
|
||||||
|
- { name: service_collection, tag: notification.method }
|
||||||
|
|
||||||
|
notification.type.approve_post:
|
||||||
|
class: phpbb\notification\type\approve_post
|
||||||
|
scope: prototype # scope MUST be prototype for this to work! # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.approve_topic:
|
||||||
|
class: phpbb\notification\type\approve_topic
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.bookmark:
|
||||||
|
class: phpbb\notification\type\bookmark
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.disapprove_post:
|
||||||
|
class: phpbb\notification\type\disapprove_post
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.disapprove_topic:
|
||||||
|
class: phpbb\notification\type\disapprove_topic
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.group_request:
|
||||||
|
class: phpbb\notification\type\group_request
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.group_request_approved:
|
||||||
|
class: phpbb\notification\type\group_request_approved
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.pm:
|
||||||
|
class: phpbb\notification\type\pm
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.post:
|
||||||
|
class: phpbb\notification\type\post
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.post_in_queue:
|
||||||
|
class: phpbb\notification\type\post_in_queue
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.quote:
|
||||||
|
class: phpbb\notification\type\quote
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.report_pm:
|
||||||
|
class: phpbb\notification\type\report_pm
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.report_pm_closed:
|
||||||
|
class: phpbb\notification\type\report_pm_closed
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.report_post:
|
||||||
|
class: phpbb\notification\type\report_post
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.report_post_closed:
|
||||||
|
class: phpbb\notification\type\report_post_closed
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.topic:
|
||||||
|
class: phpbb\notification\type\topic
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.topic_in_queue:
|
||||||
|
class: phpbb\notification\type\topic_in_queue
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.type.admin_activate_user:
|
||||||
|
class: phpbb\notification\type\admin_activate_user
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
- %tables.notification_types%
|
||||||
|
- %tables.notifications%
|
||||||
|
- %tables.user_notifications%
|
||||||
|
tags:
|
||||||
|
- { name: notification.type }
|
||||||
|
|
||||||
|
notification.method.email:
|
||||||
|
class: phpbb\notification\method\email
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
tags:
|
||||||
|
- { name: notification.method }
|
||||||
|
|
||||||
|
notification.method.jabber:
|
||||||
|
class: phpbb\notification\method\jabber
|
||||||
|
scope: prototype # scope MUST be prototype for this to work!
|
||||||
|
arguments:
|
||||||
|
- @user_loader
|
||||||
|
- @dbal.conn
|
||||||
|
- @cache.driver
|
||||||
|
- @user
|
||||||
|
- @auth
|
||||||
|
- @config
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
tags:
|
||||||
|
- { name: notification.method }
|
128
phpBB/config/default/services_passwords.yml
Normal file
128
phpBB/config/default/services_passwords.yml
Normal file
|
@ -0,0 +1,128 @@
|
||||||
|
parameters:
|
||||||
|
passwords.algorithms:
|
||||||
|
- passwords.driver.bcrypt_2y
|
||||||
|
- passwords.driver.bcrypt
|
||||||
|
- passwords.driver.salted_md5
|
||||||
|
- passwords.driver.phpass
|
||||||
|
|
||||||
|
services:
|
||||||
|
passwords.driver.bcrypt:
|
||||||
|
class: phpbb\passwords\driver\bcrypt
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.bcrypt_2y:
|
||||||
|
class: phpbb\passwords\driver\bcrypt_2y
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.bcrypt_wcf2:
|
||||||
|
class: phpbb\passwords\driver\bcrypt_wcf2
|
||||||
|
arguments:
|
||||||
|
- @passwords.driver.bcrypt
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.salted_md5:
|
||||||
|
class: phpbb\passwords\driver\salted_md5
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.phpass:
|
||||||
|
class: phpbb\passwords\driver\phpass
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.convert_password:
|
||||||
|
class: phpbb\passwords\driver\convert_password
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.sha1_smf:
|
||||||
|
class: phpbb\passwords\driver\sha1_smf
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.sha1_wcf1:
|
||||||
|
class: phpbb\passwords\driver\sha1_wcf1
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.sha1:
|
||||||
|
class: phpbb\passwords\driver\sha1
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.md5_phpbb2:
|
||||||
|
class: phpbb\passwords\driver\md5_phpbb2
|
||||||
|
arguments:
|
||||||
|
- @request
|
||||||
|
- @passwords.driver.salted_md5
|
||||||
|
- %core.root_path%
|
||||||
|
- %core.php_ext%
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.md5_mybb:
|
||||||
|
class: phpbb\passwords\driver\md5_mybb
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver.md5_vb:
|
||||||
|
class: phpbb\passwords\driver\md5_vb
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_helper
|
||||||
|
tags:
|
||||||
|
- { name: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver_collection:
|
||||||
|
class: phpbb\di\service_collection
|
||||||
|
arguments:
|
||||||
|
- @service_container
|
||||||
|
tags:
|
||||||
|
- { name: service_collection, tag: passwords.driver }
|
||||||
|
|
||||||
|
passwords.driver_helper:
|
||||||
|
class: phpbb\passwords\driver\helper
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
|
||||||
|
passwords.manager:
|
||||||
|
class: phpbb\passwords\manager
|
||||||
|
arguments:
|
||||||
|
- @config
|
||||||
|
- @passwords.driver_collection
|
||||||
|
- @passwords.helper
|
||||||
|
- %passwords.algorithms%
|
||||||
|
|
||||||
|
passwords.helper:
|
||||||
|
class: phpbb\passwords\helper
|
101
phpBB/config/default/services_profilefields.yml
Normal file
101
phpBB/config/default/services_profilefields.yml
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
services:
|
||||||
|
profilefields.manager:
|
||||||
|
class: phpbb\profilefields\manager
|
||||||
|
arguments:
|
||||||
|
- @auth
|
||||||
|
- @dbal.conn
|
||||||
|
- @dispatcher
|
||||||
|
- @request
|
||||||
|
- @template
|
||||||
|
- @profilefields.type_collection
|
||||||
|
- @user
|
||||||
|
- %tables.profile_fields%
|
||||||
|
- %tables.profile_fields_language%
|
||||||
|
- %tables.profile_fields_data%
|
||||||
|
|
||||||
|
profilefields.lang_helper:
|
||||||
|
class: phpbb\profilefields\lang_helper
|
||||||
|
arguments:
|
||||||
|
- @dbal.conn
|
||||||
|
- %tables.profile_fields_options_language%
|
||||||
|
|
||||||
|
profilefields.type_collection:
|
||||||
|
class: phpbb\di\service_collection
|
||||||
|
arguments:
|
||||||
|
- @service_container
|
||||||
|
tags:
|
||||||
|
- { name: service_collection, tag: profilefield.type }
|
||||||
|
|
||||||
|
profilefields.type.bool:
|
||||||
|
class: phpbb\profilefields\type\type_bool
|
||||||
|
arguments:
|
||||||
|
- @profilefields.lang_helper
|
||||||
|
- @request
|
||||||
|
- @template
|
||||||
|
- @user
|
||||||
|
tags:
|
||||||
|
- { name: profilefield.type }
|
||||||
|
|
||||||
|
profilefields.type.date:
|
||||||
|
class: phpbb\profilefields\type\type_date
|
||||||
|
arguments:
|
||||||
|
- @request
|
||||||
|
- @template
|
||||||
|
- @user
|
||||||
|
tags:
|
||||||
|
- { name: profilefield.type }
|
||||||
|
|
||||||
|
profilefields.type.dropdown:
|
||||||
|
class: phpbb\profilefields\type\type_dropdown
|
||||||
|
arguments:
|
||||||
|
- @profilefields.lang_helper
|
||||||
|
- @request
|
||||||
|
- @template
|
||||||
|
- @user
|
||||||
|
tags:
|
||||||
|
- { name: profilefield.type }
|
||||||
|
|
||||||
|
profilefields.type.googleplus:
|
||||||
|
class: phpbb\profilefields\type\type_googleplus
|
||||||
|
arguments:
|
||||||
|
- @request
|
||||||
|
- @template
|
||||||
|
- @user
|
||||||
|
tags:
|
||||||
|
- { name: profilefield.type }
|
||||||
|
|
||||||
|
profilefields.type.int:
|
||||||
|
class: phpbb\profilefields\type\type_int
|
||||||
|
arguments:
|
||||||
|
- @request
|
||||||
|
- @template
|
||||||
|
- @user
|
||||||
|
tags:
|
||||||
|
- { name: profilefield.type }
|
||||||
|
|
||||||
|
profilefields.type.string:
|
||||||
|
class: phpbb\profilefields\type\type_string
|
||||||
|
arguments:
|
||||||
|
- @request
|
||||||
|
- @template
|
||||||
|
- @user
|
||||||
|
tags:
|
||||||
|
- { name: profilefield.type }
|
||||||
|
|
||||||
|
profilefields.type.text:
|
||||||
|
class: phpbb\profilefields\type\type_text
|
||||||
|
arguments:
|
||||||
|
- @request
|
||||||
|
- @template
|
||||||
|
- @user
|
||||||
|
tags:
|
||||||
|
- { name: profilefield.type }
|
||||||
|
|
||||||
|
profilefields.type.url:
|
||||||
|
class: phpbb\profilefields\type\type_url
|
||||||
|
arguments:
|
||||||
|
- @request
|
||||||
|
- @template
|
||||||
|
- @user
|
||||||
|
tags:
|
||||||
|
- { name: profilefield.type }
|
2
phpBB/config/development/environment.yml
Normal file
2
phpBB/config/development/environment.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
imports:
|
||||||
|
- { resource: ../default/services.yml }
|
|
@ -1,2 +0,0 @@
|
||||||
imports:
|
|
||||||
- { resource: services.yml }
|
|
|
@ -1,2 +0,0 @@
|
||||||
imports:
|
|
||||||
- { resource: services.yml }
|
|
2
phpBB/config/production/environment.yml
Normal file
2
phpBB/config/production/environment.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
imports:
|
||||||
|
- { resource: ../default/services.yml }
|
|
@ -50,7 +50,7 @@ class core extends Extension
|
||||||
public function load(array $config, ContainerBuilder $container)
|
public function load(array $config, ContainerBuilder $container)
|
||||||
{
|
{
|
||||||
$loader = new YamlFileLoader($container, new FileLocator(phpbb_realpath($this->config_path)));
|
$loader = new YamlFileLoader($container, new FileLocator(phpbb_realpath($this->config_path)));
|
||||||
$loader->load('environment_' . ENVIRONMENT . '.yml');
|
$loader->load(ENVIRONMENT . '/environment.yml');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue