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_file_updater.yml
01 services:
02 installer.file_updater.factory:
03 class: phpbb\install\helper\file_updater\factory
04 arguments:
05 - '@installer.file_updater.collection'
06
07 installer.file_updater.collection:
08 class: phpbb\di\service_collection
09 arguments:
10 - '@service_container'
11 tags:
12 - { name: service_collection, tag: file_updater }
13
14 installer.file_updater.compress:
15 class: phpbb\install\helper\file_updater\compression_file_updater
16 arguments:
17 - '@installer.helper.update_helper'
18 - '%core.root_path%'
19 - '%core.php_ext%'
20 tags:
21 - { name: file_updater }
22
23 installer.file_updater.ftp:
24 class: phpbb\install\helper\file_updater\ftp_file_updater
25 arguments:
26 - '@installer.helper.update_helper'
27 - '%core.root_path%'
28 - '%core.php_ext%'
29 tags:
30 - { name: file_updater }
31
32 installer.file_updater.file:
33 class: phpbb\install\helper\file_updater\file_updater
34 arguments:
35 - '@filesystem'
36 - '%core.root_path%'
37 tags:
38 - { name: file_updater }
39