diff --git a/projects/packages/jetpack-mu-wpcom/changelog/add-add-migration-placeholder b/projects/packages/jetpack-mu-wpcom/changelog/add-add-migration-placeholder new file mode 100644 index 0000000000000..962c650438931 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/add-add-migration-placeholder @@ -0,0 +1,4 @@ +Significance: patch +Type: added + +Adds the placeholder task list for the Migration flow diff --git a/projects/packages/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php b/projects/packages/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php index 8db954a7423f6..e2f1216493f01 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php @@ -802,6 +802,13 @@ function wpcom_launchpad_get_task_definitions() { return site_url( '/wp-admin/admin.php?page=wc-admin&task=launch_site' ); }, ), + 'migrating_site' => array( + 'get_title' => function () { + return __( 'Migrating the site', 'jetpack-mu-wpcom' ); + }, + 'is_complete_callback' => 'wpcom_launchpad_is_task_option_completed', + 'is_visible_callback' => '__return_true', + ), ); $extended_task_definitions = apply_filters( 'wpcom_launchpad_extended_task_definitions', array() ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/launchpad/launchpad.php b/projects/packages/jetpack-mu-wpcom/src/features/launchpad/launchpad.php index 829e09765d6a2..4ff9f06c7b1d1 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/launchpad/launchpad.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/launchpad/launchpad.php @@ -315,6 +315,14 @@ function wpcom_launchpad_get_task_list_definitions() { 'woo_launch_site', ), ), + 'post-migration' => array( + 'get_title' => function () { + return __( 'Site migration', 'jetpack-mu-wpcom' ); + }, + 'task_ids' => array( + 'migrating_site', + ), + ), ); $extended_task_list_definitions = apply_filters( 'wpcom_launchpad_extended_task_list_definitions', array() ); diff --git a/projects/plugins/mu-wpcom-plugin/changelog/add-add-migration-placeholder b/projects/plugins/mu-wpcom-plugin/changelog/add-add-migration-placeholder new file mode 100644 index 0000000000000..aafa423ffab5b --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/add-add-migration-placeholder @@ -0,0 +1,5 @@ +Significance: patch +Type: added +Comment: We are just adding a placeholder tasklist + + diff --git a/projects/plugins/wpcomsh/changelog/add-add-migration-placeholder b/projects/plugins/wpcomsh/changelog/add-add-migration-placeholder new file mode 100644 index 0000000000000..aafa423ffab5b --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/add-add-migration-placeholder @@ -0,0 +1,5 @@ +Significance: patch +Type: added +Comment: We are just adding a placeholder tasklist + +