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_install_console.yml
01 services:
02 console.installer.command_collection:
03 class: phpbb\di\service_collection
04 arguments:
05 - '@service_container'
06 tags:
07 - { name: service_collection, tag: console.installer.command }
08
09 console.installer.command.install:
10 class: phpbb\install\console\command\install\install
11 arguments:
12 - '@language'
13 - '@installer.helper.iohandler_factory'
14 - '@installer.installer.install'
15 - '@installer.helper.install_helper'
16 tags:
17 - { name: console.installer.command }
18
19 console.installer.command.config.show:
20 class: phpbb\install\console\command\install\config\show
21 arguments:
22 - '@language'
23 - '@installer.helper.iohandler_factory'
24 tags:
25 - { name: console.installer.command }
26
27
28 console.installer.command.config.validate:
29 class: phpbb\install\console\command\install\config\validate
30 arguments:
31 - '@language'
32 - '@installer.helper.iohandler_factory'
33 tags:
34 - { name: console.installer.command }
35
36 console.updater.command.update:
37 class: phpbb\install\console\command\update\update
38 arguments:
39 - '@language'
40 - '@installer.helper.iohandler_factory'
41 - '@installer.installer.update'
42 - '@installer.helper.install_helper'
43 tags:
44 - { name: console.installer.command }
45
46 console.updater.command.config.show:
47 class: phpbb\install\console\command\update\config\show
48 arguments:
49 - '@language'
50 - '@installer.helper.iohandler_factory'
51 tags:
52 - { name: console.installer.command }
53
54
55 console.updater.command.config.validate:
56 class: phpbb\install\console\command\update\config\validate
57 arguments:
58 - '@language'
59 - '@installer.helper.iohandler_factory'
60 tags:
61 - { name: console.installer.command }
62