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_requirements.yml
01 services:
02 installer.requirements.check_filesystem:
03 class: phpbb\install\module\requirements\task\check_filesystem
04 arguments:
05 - '@filesystem'
06 - '@installer.helper.iohandler'
07 - '%core.root_path%'
08 - '%core.php_ext%'
09 tags:
10 - { name: installer_requirements, order: 10 }
11
12 installer.requirements.check_server_environment:
13 class: phpbb\install\module\requirements\task\check_server_environment
14 arguments:
15 - '@installer.helper.database'
16 - '@installer.helper.iohandler'
17 tags:
18 - { name: installer_requirements, order: 20 }
19 - { name: update_requirements, order: 20 }
20
21 installer.module.install_requirements_collection:
22 class: phpbb\di\ordered_service_collection
23 arguments:
24 - '@service_container'
25 tags:
26 - { name: service_collection, tag: installer_requirements, class_name_aware: true }
27
28 # Please note, that the name of this module is hard coded in the installer service
29 installer.module.requirements_install:
30 class: phpbb\install\module\requirements\install_module
31 parent: installer.module_base
32 arguments:
33 - '@installer.module.install_requirements_collection'
34 - true
35 - false
36 tags:
37 - { name: installer_install_module, order: 10 }
38