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. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
profilefield.yml
001 services:
002 profilefields.manager:
003 class: phpbb\profilefields\manager
004 arguments:
005 - @auth
006 - @dbal.conn
007 - @dispatcher
008 - @request
009 - @template
010 - @profilefields.type_collection
011 - @user
012 - %tables.profile_fields%
013 - %tables.profile_fields_language%
014 - %tables.profile_fields_data%
015
016 profilefields.lang_helper:
017 class: phpbb\profilefields\lang_helper
018 arguments:
019 - @dbal.conn
020 - %tables.profile_fields_options_language%
021
022 # ----- Profile fields types -----
023 profilefields.type_collection:
024 class: phpbb\di\service_collection
025 arguments:
026 - @service_container
027 tags:
028 - { name: service_collection, tag: profilefield.type }
029
030 profilefields.type.bool:
031 class: phpbb\profilefields\type\type_bool
032 arguments:
033 - @profilefields.lang_helper
034 - @request
035 - @template
036 - @user
037 tags:
038 - { name: profilefield.type }
039
040 profilefields.type.date:
041 class: phpbb\profilefields\type\type_date
042 arguments:
043 - @request
044 - @template
045 - @user
046 tags:
047 - { name: profilefield.type }
048
049 profilefields.type.dropdown:
050 class: phpbb\profilefields\type\type_dropdown
051 arguments:
052 - @profilefields.lang_helper
053 - @request
054 - @template
055 - @user
056 tags:
057 - { name: profilefield.type }
058
059 profilefields.type.googleplus:
060 class: phpbb\profilefields\type\type_googleplus
061 arguments:
062 - @request
063 - @template
064 - @user
065 tags:
066 - { name: profilefield.type }
067
068 profilefields.type.int:
069 class: phpbb\profilefields\type\type_int
070 arguments:
071 - @request
072 - @template
073 - @user
074 tags:
075 - { name: profilefield.type }
076
077 profilefields.type.string:
078 class: phpbb\profilefields\type\type_string
079 arguments:
080 - @request
081 - @template
082 - @user
083 tags:
084 - { name: profilefield.type }
085
086 profilefields.type.text:
087 class: phpbb\profilefields\type\type_text
088 arguments:
089 - @request
090 - @template
091 - @user
092 tags:
093 - { name: profilefield.type }
094
095 profilefields.type.url:
096 class: phpbb\profilefields\type\type_url
097 arguments:
098 - @request
099 - @template
100 - @user
101 tags:
102 - { name: profilefield.type }
103