1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

Merge pull request #5778 from gijsmartens/ticket/15233

[ticket/15233] Standardize avatar output variables
This commit is contained in:
Marc Alexander
2021-04-08 22:03:37 +02:00
committed by GitHub
39 changed files with 474 additions and 92 deletions

View File

@@ -124,6 +124,7 @@ services:
class: phpbb\group\helper
arguments:
- '@auth'
- '@avatar.helper'
- '@cache'
- '@config'
- '@language'

View File

@@ -6,6 +6,16 @@ services:
- '@dispatcher'
- '@avatar.driver_collection'
avatar.helper:
class: phpbb\avatar\helper
arguments:
- '@config'
- '@dispatcher'
- '@language'
- '@avatar.manager'
- '@path_helper'
- '@user'
# ----- Avatar drivers -----
avatar.driver_collection:
class: phpbb\di\service_collection

View File

@@ -14,6 +14,7 @@ services:
user_loader:
class: phpbb\user_loader
arguments:
- '@avatar.helper'
- '@dbal.conn'
- '%core.root_path%'
- '%core.php_ext%'