mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-26 03:48:53 +00:00
It doesn't actually add proper avatar functionality to the installer but provides the necessary base classes for templating. PHPBB3-17153
25 lines
652 B
YAML
25 lines
652 B
YAML
services:
|
|
avatar.manager:
|
|
class: phpbb\avatar\manager
|
|
arguments:
|
|
- '@config'
|
|
- '@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
|
|
arguments:
|
|
- '@service_container'
|
|
tags:
|
|
- { name: service_collection, tag: avatar.driver }
|