mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-31 19:49:20 +02:00
60 lines
2.1 KiB
YAML
60 lines
2.1 KiB
YAML
services:
|
|
installer.obtain_data.obtain_admin_data:
|
|
class: phpbb\install\module\obtain_data\task\obtain_admin_data
|
|
arguments:
|
|
- '@installer.helper.config'
|
|
- '@installer.helper.iohandler'
|
|
tags:
|
|
- { name: install_obtain_data, order: 1 }
|
|
|
|
installer.obtain_data.obtain_database_data:
|
|
class: phpbb\install\module\obtain_data\task\obtain_database_data
|
|
arguments:
|
|
- '@installer.helper.database'
|
|
- '@installer.helper.config'
|
|
- '@installer.helper.iohandler'
|
|
tags:
|
|
- { name: install_obtain_data, order: 2 }
|
|
|
|
installer.obtain_data.obtain_server_data:
|
|
class: phpbb\install\module\obtain_data\task\obtain_server_data
|
|
arguments:
|
|
- '@installer.helper.config'
|
|
- '@installer.helper.iohandler'
|
|
tags:
|
|
- { name: install_obtain_data, order: 3 }
|
|
|
|
installer.obtain_data.obtain_email_data:
|
|
class: phpbb\install\module\obtain_data\task\obtain_email_data
|
|
arguments:
|
|
- '@installer.helper.config'
|
|
- '@installer.helper.iohandler'
|
|
tags:
|
|
- { name: install_obtain_data, order: 4 }
|
|
|
|
installer.obtain_data.obtain_board_data:
|
|
class: phpbb\install\module\obtain_data\task\obtain_board_data
|
|
arguments:
|
|
- '@installer.helper.config'
|
|
- '@installer.helper.iohandler'
|
|
- '@language.helper.language_file'
|
|
tags:
|
|
- { name: install_obtain_data, order: 5 }
|
|
|
|
installer.module.install_obtain_data_collection:
|
|
class: phpbb\di\ordered_service_collection
|
|
arguments:
|
|
- '@service_container'
|
|
tags:
|
|
- { name: service_collection, tag: install_obtain_data, class_name_aware: true }
|
|
|
|
installer.module.obtain_data_install:
|
|
class: phpbb\install\module\obtain_data\install_module
|
|
parent: installer.module_base
|
|
arguments:
|
|
- '@installer.module.install_obtain_data_collection'
|
|
- true
|
|
- false
|
|
tags:
|
|
- { name: installer_install_module, order: 2 }
|