Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
services_auth.yml
001 services:
002 # ----- Auth management -----
003 auth:
004 class: phpbb\auth\auth
005
006 # ----- Auth providers -----
007 auth.provider_collection:
008 class: phpbb\auth\provider_collection
009 arguments:
010 - '@service_container'
011 - '@config'
012 tags:
013 - { name: service_collection, tag: auth.provider }
014
015 auth.provider.db:
016 class: phpbb\auth\provider\db
017 arguments:
018 - '@dbal.conn'
019 - '@config'
020 - '@passwords.manager'
021 - '@request'
022 - '@user'
023 - '@service_container'
024 - '%core.root_path%'
025 - '%core.php_ext%'
026 tags:
027 - { name: auth.provider }
028
029 auth.provider.apache:
030 class: phpbb\auth\provider\apache
031 arguments:
032 - '@dbal.conn'
033 - '@config'
034 - '@passwords.manager'
035 - '@request'
036 - '@user'
037 - '%core.root_path%'
038 - '%core.php_ext%'
039 tags:
040 - { name: auth.provider }
041
042 auth.provider.ldap:
043 class: phpbb\auth\provider\ldap
044 arguments:
045 - '@dbal.conn'
046 - '@config'
047 - '@passwords.manager'
048 - '@user'
049 tags:
050 - { name: auth.provider }
051
052 auth.provider.oauth:
053 class: phpbb\auth\provider\oauth\oauth
054 arguments:
055 - '@dbal.conn'
056 - '@config'
057 - '@passwords.manager'
058 - '@request'
059 - '@user'
060 - '%tables.auth_provider_oauth_token_storage%'
061 - '%tables.auth_provider_oauth_states%'
062 - '%tables.auth_provider_oauth_account_assoc%'
063 - '@auth.provider.oauth.service_collection'
064 - '%tables.users%'
065 - '@service_container'
066 - '@dispatcher'
067 - '%core.root_path%'
068 - '%core.php_ext%'
069 tags:
070 - { name: auth.provider }
071
072 # ----- OAuth services providers -----
073 auth.provider.oauth.service_collection:
074 class: phpbb\di\service_collection
075 arguments:
076 - '@service_container'
077 tags:
078 - { name: service_collection, tag: auth.provider.oauth.service }
079
080 auth.provider.oauth.service.bitly:
081 class: phpbb\auth\provider\oauth\service\bitly
082 arguments:
083 - '@config'
084 - '@request'
085 tags:
086 - { name: auth.provider.oauth.service }
087
088 auth.provider.oauth.service.facebook:
089 class: phpbb\auth\provider\oauth\service\facebook
090 arguments:
091 - '@config'
092 - '@request'
093 tags:
094 - { name: auth.provider.oauth.service }
095
096 auth.provider.oauth.service.google:
097 class: phpbb\auth\provider\oauth\service\google
098 arguments:
099 - '@config'
100 - '@request'
101 tags:
102 - { name: auth.provider.oauth.service }
103
104 auth.provider.oauth.service.twitter:
105 class: phpbb\auth\provider\oauth\service\twitter
106 arguments:
107 - '@config'
108 - '@request'
109 tags:
110 - { name: auth.provider.oauth.service }
111