[ Index ] |
PHP Cross Reference of phpBB-3.1.12-deutsch |
[Summary view] [Print] [Text view]
1 services: 2 # ----- Auth management ----- 3 auth: 4 class: phpbb\auth\auth 5 6 # ----- Auth providers ----- 7 auth.provider_collection: 8 class: phpbb\auth\provider_collection 9 arguments: 10 - @service_container 11 - @config 12 tags: 13 - { name: service_collection, tag: auth.provider } 14 15 auth.provider.db: 16 class: phpbb\auth\provider\db 17 arguments: 18 - @dbal.conn 19 - @config 20 - @passwords.manager 21 - @request 22 - @user 23 - @service_container 24 - %core.root_path% 25 - %core.php_ext% 26 tags: 27 - { name: auth.provider } 28 29 auth.provider.apache: 30 class: phpbb\auth\provider\apache 31 arguments: 32 - @dbal.conn 33 - @config 34 - @passwords.manager 35 - @request 36 - @user 37 - %core.root_path% 38 - %core.php_ext% 39 tags: 40 - { name: auth.provider } 41 42 auth.provider.ldap: 43 class: phpbb\auth\provider\ldap 44 arguments: 45 - @dbal.conn 46 - @config 47 - @passwords.manager 48 - @user 49 tags: 50 - { name: auth.provider } 51 52 auth.provider.oauth: 53 class: phpbb\auth\provider\oauth\oauth 54 arguments: 55 - @dbal.conn 56 - @config 57 - @passwords.manager 58 - @request 59 - @user 60 - %tables.auth_provider_oauth_token_storage% 61 - %tables.auth_provider_oauth_account_assoc% 62 - @auth.provider.oauth.service_collection 63 - %tables.users% 64 - @service_container 65 - @dispatcher 66 - %core.root_path% 67 - %core.php_ext% 68 tags: 69 - { name: auth.provider } 70 71 # ----- OAuth services providers ----- 72 auth.provider.oauth.service_collection: 73 class: phpbb\di\service_collection 74 arguments: 75 - @service_container 76 tags: 77 - { name: service_collection, tag: auth.provider.oauth.service } 78 79 auth.provider.oauth.service.bitly: 80 class: phpbb\auth\provider\oauth\service\bitly 81 arguments: 82 - @config 83 - @request 84 tags: 85 - { name: auth.provider.oauth.service } 86 87 auth.provider.oauth.service.facebook: 88 class: phpbb\auth\provider\oauth\service\facebook 89 arguments: 90 - @config 91 - @request 92 tags: 93 - { name: auth.provider.oauth.service } 94 95 auth.provider.oauth.service.google: 96 class: phpbb\auth\provider\oauth\service\google 97 arguments: 98 - @config 99 - @request 100 tags: 101 - { name: auth.provider.oauth.service }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Jan 11 00:25:41 2018 | Cross-referenced by PHPXref 0.7.1 |