Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

auth.yml

Zuletzt modifiziert: 09.10.2024, 12:51 - Dateigröße: 2.69 KiB


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_account_assoc%
062              - @auth.provider.oauth.service_collection
063              - %tables.users%
064              - @service_container
065              - %core.root_path%
066              - %core.php_ext%
067          tags:
068              - { name: auth.provider }
069   
070  # ----- OAuth services providers -----
071      auth.provider.oauth.service_collection:
072          class: phpbb\di\service_collection
073          arguments:
074              - @service_container
075          tags:
076              - { name: service_collection, tag: auth.provider.oauth.service }
077   
078      auth.provider.oauth.service.bitly:
079          class: phpbb\auth\provider\oauth\service\bitly
080          arguments:
081              - @config
082              - @request
083          tags:
084              - { name: auth.provider.oauth.service }
085   
086      auth.provider.oauth.service.facebook:
087          class: phpbb\auth\provider\oauth\service\facebook
088          arguments:
089              - @config
090              - @request
091          tags:
092              - { name: auth.provider.oauth.service }
093   
094      auth.provider.oauth.service.google:
095          class: phpbb\auth\provider\oauth\service\google
096          arguments:
097              - @config
098              - @request
099          tags:
100              - { name: auth.provider.oauth.service }
101