1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/13740] Tasks can appear as multiple steps for the progress bar

PHPBB3-13740
This commit is contained in:
CHItA
2015-06-04 00:43:08 +02:00
committed by Mate Bartus
parent 63c3500dac
commit 0dc6029bfe
27 changed files with 190 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
services:
installer.filesystem.create_config:
installer.install_filesystem.create_config_file:
class: phpbb\install\module\install_filesystem\task\create_config_file
arguments:
- @filesystem
@@ -13,4 +13,4 @@ services:
class: phpbb\install\module\install_filesystem\module
parent: installer.module_base
arguments:
- ["installer.filesystem.create_config"]
- ["installer.install_filesystem.create_config_file"]

View File

@@ -1,10 +1,10 @@
services:
installer.finish.populate_migrations:
installer.install_finish.populate_migrations:
class: phpbb\install\module\install_finish\task\populate_migrations
arguments:
- @installer.helper.container_factory
installer.finish.notify_user:
installer.install_finish.notify_user:
class: phpbb\install\module\install_finish\task\notify_user
arguments:
- @installer.helper.container_factory
@@ -17,4 +17,4 @@ services:
class: phpbb\install\module\install_filesystem\module
parent: installer.module_base
arguments:
- ["installer.finish.populate_migrations", "installer.finish.notify_user"]
- ["installer.install_finish.populate_migrations", "installer.install_finish.notify_user"]

View File

@@ -1,36 +1,36 @@
services:
installer.obtain_data.admin:
installer.obtain_data.obtain_admin_data:
class: phpbb\install\module\obtain_data\task\obtain_admin_data
arguments:
- @installer.helper.config
- @installer.helper.iohandler
installer.obtain_data.board:
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
installer.obtain_data.database:
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
installer.obtain_data.email:
installer.obtain_data.obtain_email_data:
class: phpbb\install\module\obtain_data\task\obtain_email_data
arguments:
- @installer.helper.config
- @installer.helper.iohandler
installer.obtain_data.imagick:
installer.obtain_data.obtain_imagick_path:
class: phpbb\install\module\obtain_data\task\obtain_imagick_path
arguments:
- @installer.helper.config
installer.obtain_data.server:
installer.obtain_data.obtain_server_data:
class: phpbb\install\module\obtain_data\task\obtain_server_data
arguments:
- @installer.helper.config
@@ -40,4 +40,4 @@ services:
class: phpbb\install\module\obtain_data\module
parent: installer.module_base
arguments:
- ["installer.obtain_data.admin", "installer.obtain_data.database", "installer.obtain_data.server", "installer.obtain_data.email", "installer.obtain_data.board", "installer.obtain_data.imagick"]
- ["installer.obtain_data.obtain_admin_data", "installer.obtain_data.obtain_database_data", "installer.obtain_data.obtain_server_data", "installer.obtain_data.obtain_email_data", "installer.obtain_data.obtain_board_data", "installer.obtain_data.obtain_imagick_path"]

View File

@@ -1,5 +1,5 @@
services:
installer.requirements.task.filesystem:
installer.requirements.check_filesystem:
class: phpbb\install\module\requirements\task\check_filesystem
arguments:
- @filesystem
@@ -7,7 +7,7 @@ services:
- %core.root_path%
- %core.php_ext%
installer.requirements.task.server:
installer.requirements.check_server_environment:
class: phpbb\install\module\requirements\task\check_server_environment
arguments:
- @installer.helper.database
@@ -17,4 +17,4 @@ services:
class: phpbb\install\module\requirements\module
parent: installer.module_base
arguments:
- ["installer.requirements.task.filesystem", "installer.requirements.task.server"]
- ["installer.requirements.check_filesystem", "installer.requirements.check_server_environment"]