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_obtain_data.yml
01 services:
02 installer.obtain_data.obtain_admin_data:
03 class: phpbb\install\module\obtain_data\task\obtain_admin_data
04 arguments:
05 - '@installer.helper.config'
06 - '@installer.helper.iohandler'
07 tags:
08 - { name: install_obtain_data, order: 10 }
09
10 installer.obtain_data.obtain_board_data:
11 class: phpbb\install\module\obtain_data\task\obtain_board_data
12 arguments:
13 - '@installer.helper.config'
14 - '@installer.helper.iohandler'
15 - '@language.helper.language_file'
16 tags:
17 - { name: install_obtain_data, order: 50 }
18
19 installer.obtain_data.obtain_database_data:
20 class: phpbb\install\module\obtain_data\task\obtain_database_data
21 arguments:
22 - '@installer.helper.database'
23 - '@installer.helper.config'
24 - '@installer.helper.iohandler'
25 tags:
26 - { name: install_obtain_data, order: 20 }
27
28 installer.obtain_data.obtain_email_data:
29 class: phpbb\install\module\obtain_data\task\obtain_email_data
30 arguments:
31 - '@installer.helper.config'
32 - '@installer.helper.iohandler'
33 tags:
34 - { name: install_obtain_data, order: 40 }
35
36 installer.obtain_data.obtain_imagick_path:
37 class: phpbb\install\module\obtain_data\task\obtain_imagick_path
38 arguments:
39 - '@installer.helper.config'
40 tags:
41 - { name: install_obtain_data, order: 60 }
42
43 installer.obtain_data.obtain_server_data:
44 class: phpbb\install\module\obtain_data\task\obtain_server_data
45 arguments:
46 - '@installer.helper.config'
47 - '@installer.helper.iohandler'
48 tags:
49 - { name: install_obtain_data, order: 30 }
50
51 installer.module.install_obtain_data_collection:
52 class: phpbb\di\ordered_service_collection
53 arguments:
54 - '@service_container'
55 tags:
56 - { name: service_collection, tag: install_obtain_data, class_name_aware: true }
57
58 installer.module.obtain_data_install:
59 class: phpbb\install\module\obtain_data\install_module
60 parent: installer.module_base
61 arguments:
62 - '@installer.module.install_obtain_data_collection'
63 - true
64 - false
65 tags:
66 - { name: installer_install_module, order: 20 }
67