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_update_filesystem.yml
01 services:
02 installer.update_filesystem.check_task:
03 class: phpbb\install\module\update_filesystem\task\file_check
04 arguments:
05 - '@filesystem'
06 - '@installer.helper.config'
07 - '@installer.helper.iohandler'
08 - '@installer.helper.update_helper'
09 - '%core.root_path%'
10 tags:
11 - { name: update_filesystem, order: 10 }
12
13 installer.update_filesystem.diff_files:
14 class: phpbb\install\module\update_filesystem\task\diff_files
15 arguments:
16 - '@installer.helper.container_factory'
17 - '@installer.helper.config'
18 - '@installer.helper.iohandler'
19 - '@installer.helper.update_helper'
20 - '%core.root_path%'
21 - '%core.php_ext%'
22 tags:
23 - { name: update_filesystem, order: 20 }
24
25 installer.update_filesystem.show_file_status:
26 class: phpbb\install\module\update_filesystem\task\show_file_status
27 arguments:
28 - '@installer.helper.container_factory'
29 - '@installer.helper.config'
30 - '@installer.helper.iohandler'
31 - '@filesystem'
32 - '@installer.file_updater.factory'
33 tags:
34 - { name: update_filesystem, order: 30 }
35
36 installer.update_filesystem.update_files:
37 class: phpbb\install\module\update_filesystem\task\update_files
38 arguments:
39 - '@installer.helper.container_factory'
40 - '@installer.helper.config'
41 - '@installer.helper.iohandler'
42 - '@installer.file_updater.factory'
43 - '@installer.helper.update_helper'
44 - '%core.root_path%'
45 tags:
46 - { name: update_filesystem, order: 40 }
47
48 installer.update_filesystem.download_updated_files:
49 class: phpbb\install\module\update_filesystem\task\download_updated_files
50 arguments:
51 - '@installer.helper.config'
52 - '@installer.helper.iohandler'
53 - '@filesystem'
54 tags:
55 - { name: update_filesystem, order: 50 }
56
57 installer.module.update_filesystem_collection:
58 class: phpbb\di\ordered_service_collection
59 arguments:
60 - '@service_container'
61 tags:
62 - { name: service_collection, tag: update_filesystem, class_name_aware: true }
63
64 installer.module.filesystem_update:
65 class: phpbb\install\module\update_filesystem\module
66 parent: installer.module_base
67 arguments:
68 - '@installer.module.update_filesystem_collection'
69 - true
70 - false
71 tags:
72 - { name: installer_update_module, order: 30 }
73