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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

services_update_obtain_data.yml

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 1.88 KiB


01  services:
02      installer.obtain_data.update_options:
03          class: phpbb\install\module\obtain_data\task\obtain_update_settings
04          arguments:
05              - '@installer.helper.config'
06              - '@installer.helper.iohandler'
07          tags:
08              - { name: update_obtain_data, order: 10 }
09   
10      installer.obtain_data.file_updater_method:
11          class: phpbb\install\module\obtain_data\task\obtain_file_updater_method
12          arguments:
13              - '@installer.helper.config'
14              - '@installer.helper.iohandler'
15          tags:
16              - { name: update_obtain_data, order: 20 }
17   
18      installer.obtain_data.update_files:
19          class: phpbb\install\module\obtain_data\task\obtain_update_files
20          arguments:
21              - '@installer.helper.config'
22              - '@installer.helper.iohandler'
23              - '%core.root_path%'
24              - '%core.php_ext%'
25          tags:
26              - { name: update_obtain_data, order: 30 }
27   
28      installer.obtain_data.update_ftp_settings:
29          class: phpbb\install\module\obtain_data\task\obtain_update_ftp_data
30          arguments:
31              - '@installer.helper.config'
32              - '@installer.helper.iohandler'
33              - '@installer.helper.update_helper'
34              - '%core.php_ext%'
35          tags:
36              - { name: update_obtain_data, order: 40 }
37   
38      installer.module.update_obtain_data_collection:
39          class: phpbb\di\ordered_service_collection
40          arguments:
41              - '@service_container'
42          tags:
43              - { name: service_collection, tag: update_obtain_data, class_name_aware: true }
44   
45      installer.module.obtain_data_update:
46          class: phpbb\install\module\obtain_data\update_module
47          parent: installer.module_base
48          arguments:
49              - '@installer.module.update_obtain_data_collection'
50              - true
51              - false
52          tags:
53              - { name: installer_update_module, order: 20 }
54