aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/avatars.yml
blob: 0aad08bac948461486b51d0bb4ffec70d5c16067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
services:
    avatar.driver.gravatar:
        class: phpbb_avatar_driver_gravatar
        arguments:
            - @config
            - %core.root_path%
            - %core.php_ext%
            - @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%
            - @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%
            - @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%
            - @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 }